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.
_______________________________________________
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to