summaryrefslogtreecommitdiff
path: root/tests/parser/chained-equality-type-invalid.test
blob: e280245ed9ec9a2ac1068a8cf9a64e9fc2693e0d (plain)
1
2
3
4
5
6
7
8
Invalid Code

void main () {
    var foo = "world";
    var bar = 0;
    if (foo == "world" != 0) {
    }
}