Updated with review feedback.
[mono.git] / mcs / tests / gtest-171.cs
1 class list <a> {
2 }
3
4 class Nil <a> : list <a> {
5   public static Nil <a> single;
6   static Nil () {
7     single = new Nil <a> ();
8   }
9 }
10
11
12 public class Test {
13    public static void Main()  {
14      list <int>[,] x = new list<int>[10,10];
15      x[0,0] = Nil <int>.single;
16
17    }
18 }