DEBSOURCES
Skip Quicknav
sources / vala / 0.56.18-2 / tests / semantic / interface-prerequisite-missing-class.test
1234567891011
Invalid Code interface IFoo { } class Foo<T> { } void main () { var foo = new Foo<IFoo> (); }