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

interface IFoo {
}

class Foo<T> {
}

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