summaryrefslogtreecommitdiffstats
path: root/tests/ui/tuple/array-diagnostics.rs
blob: 1929dab073169fcb6216b280d397af156d8d5c44 (plain)
1
2
3
4
5
6
7
fn main() {
    let _tmp = [
        ("C200B40A82", 3),
        ("C200B40A83", 4) //~ ERROR: expected function, found `(&'static str, {integer})` [E0618]
        ("C200B40A8537", 5),
    ];
}