mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
19 lines
291 B
Rust
19 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
|
|
}
|
|
};
|
|
}
|