Merge pull request #4928 from kumpera/ptr_to_struct_intrinsic
[mono.git] / mcs / tests / test-635.cs
index e843091b9ab2bacc7b3dd226165752f8912e3269..50dbb08d671a5280c99fa1cb48761d4016abc216 100644 (file)
@@ -7,7 +7,7 @@ class ShortCircuitFold {
   static void a (bool e, bool v) { if (e != v) throw new Exception ("unexpected value"); }
   static void c (int e) { if (e != calls) throw new Exception ("call count mismatch: expected " + e + " but got " + calls); }
   static bool f () { throw new Exception ("not short circuited out"); }
-  static void Main ()
+  public static void Main ()
   {
     // short circuit out f ()
     a (false, false && f ());