2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-070.cs
blob9b2184402dfa1a81b2c3a29057b3b1d4ab0ecfc3
1 namespace Martin
3 public class Test<T>
5 public static int Foo ()
7 return 0;
12 class Foo<T>
14 public Foo (int a)
15 { }
17 public Foo ()
18 : this (Martin.Test<T>.Foo ())
19 { }
22 class X
24 static void Main ()