DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / structs-enums / struct-new-as-field-name.rs
12345678910
//@ run-pass struct Foo { new: isize, } pub fn main() { let foo = Foo{ new: 3 }; assert_eq!(foo.new, 3); }