cleol
[mcs.git] / errors / gcs0308-6.cs
blob81b4ac31e6fd64279b553b4ca0b8a5c093ec78d2
1 // CS0308: The non-generic type `BaseGeneric<T>.InnerDerived' cannot be used with the type arguments
2 // Line: 19
4 class BaseGeneric<T>
6 public class InnerDerived
11 class BaseConcrete : BaseGeneric<string>
15 class Program
17 static void Main ()
19 new BaseConcrete.InnerDerived<int>();