summaryrefslogtreecommitdiff
path: root/tests/semantic/with-no-such-member.test
blob: 5f20d21c88a630d91a4f479e325a3bb3193cc6cd (plain)
1
2
3
4
5
6
7
8
9
10
Invalid Code

class Foo {
}

void main () {
    with (new Foo ()) {
        field = 100;
    }
}