mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
26 lines
302 B
Rust
26 lines
302 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
struct Pair { f: isize, g: isize }
|
|
|
|
pub fn main() {
|
|
|
|
let x = Pair {
|
|
f: 0,
|
|
g: 0,
|
|
};
|
|
|
|
let _y = Pair {
|
|
f: 1,
|
|
g: 1,
|
|
.. x
|
|
};
|
|
|
|
let _z = Pair {
|
|
f: 1,
|
|
.. x
|
|
};
|
|
|
|
}
|