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> (); }