mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
8 lines
223 B
Rust
8 lines
223 B
Rust
fn main() {
|
|
let _ = (((),),).1.0; //~ ERROR no field `1` on type `(((),),)`
|
|
|
|
let _ = (((),),).0.1; //~ ERROR no field `1` on type `((),)`
|
|
|
|
let _ = (((),),).000.000; //~ ERROR no field `000` on type `(((),),)`
|
|
}
|