[mcs] Add codegen for null operator on result of awaited instance expression of prope...
[mono.git] / mcs / tests / test-671.cs
index b0ea756ebd4647e5bdb0d42fdb824978980b1223..87395cdeb3e6c33033b6d8b3c24a9d86763feca0 100644 (file)
@@ -1,15 +1,15 @@
-using System;\r
-\r
-class C\r
-{\r
-       static int Main ()\r
-       {\r
-               return Bar (null) ? 1 : 0;\r
-       }\r
-\r
-       static bool Bar (object t)\r
-       {\r
-               return Bar is object;\r
-       }\r
-}\r
-\r
+using System;
+
+class C
+{
+       public static int Main ()
+       {
+               return Bar (null) ? 1 : 0;
+       }
+
+       static bool Bar (object t)
+       {
+               return t is object;
+       }
+}
+