X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Ftest-671.cs;h=87395cdeb3e6c33033b6d8b3c24a9d86763feca0;hb=4ccd94d7ccf69cc52532ea920b2d1b48f9c6a7cc;hp=b0ea756ebd4647e5bdb0d42fdb824978980b1223;hpb=a5e40870bd3bb18e1681afed6c71e7edfdb80534;p=mono.git diff --git a/mcs/tests/test-671.cs b/mcs/tests/test-671.cs index b0ea756ebd4..87395cdeb3e 100644 --- a/mcs/tests/test-671.cs +++ b/mcs/tests/test-671.cs @@ -1,15 +1,15 @@ -using System; - -class C -{ - static int Main () - { - return Bar (null) ? 1 : 0; - } - - static bool Bar (object t) - { - return Bar is object; - } -} - +using System; + +class C +{ + public static int Main () + { + return Bar (null) ? 1 : 0; + } + + static bool Bar (object t) + { + return t is object; + } +} +