Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / tests / gtest-iter-10.cs
index 68c4f7dcdd7fdba4c3781d2bc7d3f5343f85d17e..6c25baa84a07068cb80154442d5060d0dd550e1c 100644 (file)
@@ -8,7 +8,7 @@ class Test
                while (from <= to) yield return from++;
        }
 
-       static int Main ()
+       public static int Main ()
        {
                IEnumerable<int> e = FromTo (1, 10);