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

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

class Foo : Bar {
}

void main () {
}