Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs0154-3.cs
index 219853b3b84777a004239ea90268b68a4423b325..855be8181745ff6fa28c9be6f7f20ee8ab92b446 100644 (file)
@@ -1,15 +1,15 @@
-// cs0154-3.cs: The property or indexer `Test.this[bool]' cannot be used in this context because it lacks the `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
-}
\ No newline at end of file
+// 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];
+       }
+}