5 lines
64 B
Rust
5 lines
64 B
Rust
fn main() {
|
|
let x = 0;
|
|
let _ = x.foo; //~ ERROR E0610
|
|
}
|
fn main() {
|
|
let x = 0;
|
|
let _ = x.foo; //~ ERROR E0610
|
|
}
|