[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / gtest-060.cs
blob4cc08a08b4a02a0b2758a87f0da0397d52043f8c
1 using System;
3 interface IFoo
5 MyList<U> Map<U> ();
8 class MyList<T>
10 public void Hello (T t)
12 Console.WriteLine (t);
16 class Foo : IFoo
18 public MyList<T> Map<T> ()
20 return new MyList<T> ();
24 class X
26 public static void Main ()
28 Foo foo = new Foo ();
29 MyList<int> list = foo.Map<int> ();
30 list.Hello (9);