mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 16:45:37 +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
|
||
|
}
|
||
|
};
|
||
|
}
|