mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
291 B
Rust
20 lines
291 B
Rust
struct Point {
|
|
pub x: u64,
|
|
pub y: u64,
|
|
}
|
|
|
|
const TEMPLATE: Point = Point {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
|
|
fn main() {
|
|
let _ = || {
|
|
Point {
|
|
nonexistent: 0,
|
|
//~^ ERROR struct `Point` has no field named `nonexistent`
|
|
..TEMPLATE
|
|
}
|
|
};
|
|
}
|