[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[mono.git] / mcs / errors / cs0154-3.cs
index 382c03b7b656eae709bcca11b2c4232426167081..855be8181745ff6fa28c9be6f7f20ee8ab92b446 100644 (file)
@@ -1,15 +1,15 @@
-// CS0154: The property or indexer `Test.this[bool]' cannot be used in this context because it lacks a `get' accessor\r
-// Line: 13\r
-\r
-class Test\r
-{\r
-       public int this[bool b] { set {} }\r
-}\r
-\r
-class C\r
-{\r
-       public static void Main ()\r
-       {\r
-               int i = new Test()[false];\r
-       }\r
-}\r
+// CS0154: The property or indexer `Test.this[bool]' cannot be used in this context because it lacks the `get' accessor
+// Line: 13
+
+class Test
+{
+       public int this[bool b] { set {} }
+}
+
+class C
+{
+       public static void Main ()
+       {
+               int i = new Test()[false];
+       }
+}