Merge pull request #4327 from vkargov/vk-abcremedy
[mono.git] / mcs / tests / test-15.cs
old mode 100755 (executable)
new mode 100644 (file)
index 98769e4..4dc7d1c
@@ -17,7 +17,7 @@ struct StructImplementor : Iface {
 }
 class Run {
 
-       static int Main ()
+       public static int Main ()
        {
                Iface iface;
                Implementor i = new Implementor ();
@@ -28,7 +28,7 @@ class Run {
 
                StructImplementor s = new StructImplementor ();
                Iface xiface = (Iface) s;
-               if (iface.A () != 2)
+               if (xiface.A () != 2)
                        return 2;
                
                return 0;