mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-01 23:31:32 +00:00
11 lines
651 B
Rust
11 lines
651 B
Rust
// Check that bogus field access is non-fatal
|
|
fn main() {
|
|
let x = 0;
|
|
let _ = x.foo; //~ `{integer}` is a primitive type and therefore doesn't have fields [E0610]
|
|
let _ = x.bar; //~ `{integer}` is a primitive type and therefore doesn't have fields [E0610]
|
|
let _ = 0.f; //~ `{integer}` is a primitive type and therefore doesn't have fields [E0610]
|
|
let _ = 2.l; //~ `{integer}` is a primitive type and therefore doesn't have fields [E0610]
|
|
let _ = 12.F; //~ `{integer}` is a primitive type and therefore doesn't have fields [E0610]
|
|
let _ = 34.L; //~ `{integer}` is a primitive type and therefore doesn't have fields [E0610]
|
|
}
|