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

interface Bar {
	public abstract void bar ();
}

class Foo : Bar {
}

void main () {
}