summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/deli-ident-issue-2.rs
blob: 5394760df702642db0ce23baa89db0badbaa3560 (plain)
1
2
3
4
5
6
7
fn main() {
    if 1 < 2 {
        let _a = vec!]; //~ ERROR mismatched closing delimiter
    }
} //~ ERROR unexpected closing delimiter

fn main() {}