1
Fork 0

Implement tuple array diagnostic

Co-authored-by: David Wood <Q0KPU0H1YOEPHRY1R2SN5B5RL@david.davidtw.co>
This commit is contained in:
threadexception 2022-01-14 16:03:46 +01:00
parent 86f7f78f05
commit ef46e38c2b
4 changed files with 51 additions and 5 deletions

View file

@ -0,0 +1,7 @@
fn main() {
let _tmp = [
("C200B40A82", 3),
("C200B40A83", 4) //~ ERROR: expected function, found `(&'static str, {integer})` [E0618]
("C200B40A8537", 5),
];
}