[threadpool] Pass callback at initialization (#4546)
[mono.git] / mcs / errors / cs0121-10.cs
index 37fd0245ae530705ed1dcaae82c221d7f50bd02b..c90badaa24aa704dc0d626b90ee01920d93e8e54 100644 (file)
@@ -1,32 +1,32 @@
 // CS0121: The call is ambiguous between the following methods or properties: `IList.Count()' and `ICounter.Count()'
-// Line: 33\r
+// Line: 33
 
 using System;
 
-interface IList \r
+interface IList 
 {
        int Count ();
 }
 
-interface ICounter \r
+interface ICounter 
 {
        int Count ();
-}\r
-\r
-interface ICollection\r
-{\r
-       int Count { set; }\r
 }
 
-interface IListCounter: IList, ICounter, ICollection\r
-{\r
-}\r
-\r
-interface IListCounterNew : IListCounter\r
-{\r
+interface ICollection
+{
+       int Count { set; }
+}
+
+interface IListCounter: IList, ICounter, ICollection
+{
+}
+
+interface IListCounterNew : IListCounter
+{
 }
 
-class Test\r
+class Test
 {
        static void Foo (IListCounterNew t)
        {