File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
compiler/rustc_parse_format Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ edition = "2024"
66[dependencies ]
77# tidy-alphabetical-start
88literal-escaper = { path = " ../../library/literal-escaper" }
9- rustc_index = { path = " ../rustc_index" , default-features = false }
109rustc_lexer = { path = " ../rustc_lexer" }
1110# tidy-alphabetical-end
11+
12+ [dev-dependencies ]
13+ # tidy-alphabetical-start
14+ rustc_index = { path = " ../rustc_index" , default-features = false }
15+ # tidy-alphabetical-end
Original file line number Diff line number Diff line change @@ -1106,7 +1106,7 @@ fn unescape_string(string: &str) -> Option<String> {
11061106}
11071107
11081108// Assert a reasonable size for `Piece`
1109- #[ cfg( target_pointer_width = "64" ) ]
1109+ #[ cfg( all ( test , target_pointer_width = "64" ) ) ]
11101110rustc_index:: static_assert_size!( Piece <' _>, 16 ) ;
11111111
11121112#[ cfg( test) ]
You can’t perform that action at this time.
0 commit comments