2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-235.cs
blob15ac30f49d3043b0b4c73717069386d12f68533b
1 //
2 // Compilation test: bug #47234
3 //
4 public class T {
6 static void Foo (T t, T tt)
10 static void Foo (params object[] theParams)
14 public static int Main()
16 Foo (new T (), null);
17 return 0;