summaryrefslogtreecommitdiff
path: root/tests/semantic/class-missing-implement-interface-property.test
blob: 9178af5e2a7320792df5ed001faa78fae6dc7dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
Invalid Code

interface Bar {
	public abstract string bar { get; set; }
}

class Foo : Bar {
}

void main () {
}