summaryrefslogtreecommitdiff
path: root/tests/semantic/objectcreation-abstract-class.test
blob: 37234b5e582bc5a122546975c3613f6eb36141f5 (plain)
1
2
3
4
5
6
7
8
Invalid Code

abstract class Foo {
}

void main () {
	var foo = new Foo ();
}