2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-171.cs
blobdcb8697f53be202abd323d28c0617efd542e2c6f
1 class list <a> {
4 class Nil <a> : list <a> {
5 public static Nil <a> single;
6 static Nil () {
7 single = new Nil <a> ();
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;