Merge branch 'alexischr/nursery-canaries-managed-alloc'
[mono.git] / mcs / errors / cs0173-2.cs
index 22b9faf1cc1b44a26b51b468849b54246546d3f8..5e407978a7b2f4c9c9a8154bfab389a1cd5c21ef 100644 (file)
@@ -1,2 +1,9 @@
-// cs0173.cs: Type of conditional expression can't be determined because there is no implicit conversion between 'int' and '<null>'\r// Line: 29\r\rpublic class MainClass {\r        public static void Main() {
-                bool result = false;\r                System.Console.WriteLine (result ? 1 : null);\r   }\r}\r
+// CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `int' and `null'
+// Line: 29
+
+public class MainClass {
+        public static void Main() {
+                bool result = false;
+                System.Console.WriteLine (result ? 1 : null);
+       }
+}