Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / tests / gtest-variance-3.cs
index 29addd9ea6bb894c7a38bfc8f93a9c1c86e6e84e..4af8a27d82a224b3bb763173c884f18dcbabd80d 100644 (file)
@@ -1,10 +1,8 @@
-// Compiler options: -langversion:future
-
 delegate T Foo<out T> ();
 
 public class Test
 {
-       static int Main ()
+       public static int Main ()
        {
                string message = "Hello World!";
                Foo<string> foo = () => message;