X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Ftest-46.cs;h=05721c54bfcadee3cf3a6d4101b2f6b73789424e;hb=edbc5c2334e10836479d1cc528c68d4ad5b47440;hp=6a4aa000a0b3ec4c393326f76543f50904eb8e72;hpb=5d9434fcb3acc1ed7d3d30603faae797d672fe65;p=mono.git diff --git a/mcs/tests/test-46.cs b/mcs/tests/test-46.cs index 6a4aa000a0b..05721c54bfc 100644 --- a/mcs/tests/test-46.cs +++ b/mcs/tests/test-46.cs @@ -17,7 +17,7 @@ class X { static double cast_double (object o) { return (double) o; } static bool cast_bool (object o) { return (bool) o; } - static int Main () + public static int Main () { if (cast_int ((object) -1) != -1) return 1;