Merge pull request #3563 from lewurm/interpreter
[mono.git] / mcs / tests / gtest-172-lib.cs
1 // Compiler options: -t:library
2 public class A <T> {
3   public class Nil : A <T> {
4      public static Nil _N_constant_object = new Nil ();
5   }
6 }