]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tuple/index-invalid.rs
Auto merge of #106143 - matthiaskrgr:rollup-3kpy1dc, r=matthiaskrgr
[rust.git] / src / test / ui / tuple / index-invalid.rs
1 fn main() {
2     let _ = (((),),).1.0; //~ ERROR no field `1` on type `(((),),)`
3
4     let _ = (((),),).0.1; //~ ERROR no field `1` on type `((),)`
5
6     let _ = (((),),).000.000; //~ ERROR no field `000` on type `(((),),)`
7 }