Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-260.cs
index e94f3f46efa22908e0c1b5e93ea51c6a7585d8c3..7ec1ed9edaa0a2f49f32e8a0ba7bf678f1df0b05 100644 (file)
@@ -2,5 +2,5 @@ class A<T> where T : class {}
 class B<T> : A<T> where T : class {}
 class Test {
        internal static A<Test> x = new B<Test> ();
-       static void Main () { }
+       public static void Main () { }
 }