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

abstract class Bar {
	public abstract void bar ();
}

class Foo : Bar {
}

void main () {
}