[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-variance-9.cs
1 interface IIn<in T>
2 {
3 }
4
5 class Test
6 {
7
8         static void Foo (IIn<string> f)
9         {
10         }
11
12         public static int Main ()
13         {
14                 IIn<object> test = null;
15                 Foo (test);
16
17                 return 0;
18         }
19 }