mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
198 B
Rust
12 lines
198 B
Rust
// run-pass
|
|
|
|
#![allow(non_camel_case_types)]
|
|
// compile-flags: --edition 2015
|
|
|
|
fn main() {
|
|
let try = 2;
|
|
struct try { try: u32 }
|
|
let try: try = try { try };
|
|
assert_eq!(try.try, 2);
|
|
}
|