summaryrefslogtreecommitdiff
path: root/tests/objects/bug615830-1.test
blob: 0283ce4b8e9645491a505a889dad668551587b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
Invalid Code

class Foo<T> {
}

class Bar<T> : Foo<T> {
}

void main (string[] args) {
	Foo<int> f = new Bar<string> ();
}