]> git.lizzy.rs Git - rust.git/blob - tests/ui/tuple/array-diagnostics.rs
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / ui / tuple / array-diagnostics.rs
1 fn main() {
2     let _tmp = [
3         ("C200B40A82", 3),
4         ("C200B40A83", 4) //~ ERROR: expected function, found `(&'static str, {integer})` [E0618]
5         ("C200B40A8537", 5),
6     ];
7 }