Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-variance-4.cs
index 00befb9f343b9b2bdacfe4b3afdc07a46eba7549..b0c4cebdfd97a42514bbb9c84b78abf87872d749 100644 (file)
@@ -1,10 +1,8 @@
-// Compiler options: -langversion:future
-
 delegate int Foo<in T> (T t);
 
 public class Test
 {
-       static int Main ()
+       public static int Main ()
        {
                string message = "Hello World!";
                Foo<object> foo = (o) => o.GetHashCode ();