2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-variance-9.cs
blobd40771fafa9a4eabb0df74635eab953baf62f37b
1 // Compiler options: -langversion:future
3 interface IIn<in T>
7 class Test
10 static void Foo (IIn<string> f)
14 public static int Main ()
16 IIn<object> test = null;
17 Foo (test);
19 return 0;