[Mono-list] gmcs: inherited subclasses of generic classes

Alan Jenkins sourcejedi@phonecoop.coop
Tue, 03 Aug 2004 14:40:04 +0100


gmcs  the following code.  Should it?

public class Generic<T> {
    public class SubGeneric {
       T t;
    }
}

public class Test : Generic<int> {
    public static void Main (string[] args)
    {
    }

    Test.SubGeneric sg;
}

It doesn't seem to be able to find the type parameter for Test.SubGeneric.