2010-07-09 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / gcs1640.cs
index 652f3ffc6a8c2cd033844c0164a5fbf6bbad66b8..35eed6527f1d2354c41524431fd7e971dd6ba3ac 100644 (file)
@@ -1,15 +1,15 @@
-// CS1640: foreach statement cannot operate on variables of type `T' because it contains multiple implementation of `System.Collections.Generic.IEnumerable<T>'. Try casting to a specific implementation\r
-// Line: 11\r
-\r
-using System.Collections.Generic;\r
-\r
-public class C\r
-{\r
-       public static void Test<T>(T t) \r
-               where T: IEnumerable<string>, IEnumerable<int>\r
-       {\r
-               foreach (int i in t)\r
-               {\r
-               }\r
-       }\r
-}\r
+// CS1640: foreach statement cannot operate on variables of type `T' because it contains multiple implementation of `System.Collections.Generic.IEnumerable<T>'. Try casting to a specific implementation
+// Line: 11
+
+using System.Collections.Generic;
+
+public class C
+{
+       public static void Test<T>(T t) 
+               where T: IEnumerable<string>, IEnumerable<int>
+       {
+               foreach (int i in t)
+               {
+               }
+       }
+}