X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mcs%2Ftests%2Ftest-635.cs;h=50dbb08d671a5280c99fa1cb48761d4016abc216;hb=edbc5c2334e10836479d1cc528c68d4ad5b47440;hp=e843091b9ab2bacc7b3dd226165752f8912e3269;hpb=fa488be115c6f6a283360d547934fff3c0655ef7;p=mono.git diff --git a/mcs/tests/test-635.cs b/mcs/tests/test-635.cs index e843091b9ab..50dbb08d671 100644 --- a/mcs/tests/test-635.cs +++ b/mcs/tests/test-635.cs @@ -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 ());