mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 03:27:44 +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 `(((),),)`
|
||
|
}
|