We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 331d2d6 commit 67a8ea5Copy full SHA for 67a8ea5
src/libsyntax/parse/token.rs
@@ -436,7 +436,7 @@ fn mk_fresh_ident_interner() -> @ident_interner {
436
"blk", // 26
437
"static", // 27
438
"__foreign_mod__", // 28
439
- "__field__", // 29
+ "<unnamed_field>", // 29
440
"C", // 30
441
"Self", // 31
442
src/test/debug-info/tuple-struct.rs
@@ -34,7 +34,8 @@
34
35
36
// This test case mainly makes sure that no field names are generated for tuple structs (as opposed
37
-// to all fields having the name "__field__"). Otherwise they are handled the same a normal structs.
+// to all fields having the name "<unnamed_field>"). Otherwise they are handled the same a normal
38
+// structs.
39
40
struct NoPadding16(u16, i16);
41
struct NoPadding32(i32, f32, u32);
0 commit comments