Wrong test filename
authorMarek Safar <marek.safar@gmail.com>
Thu, 14 Jun 2007 21:26:54 +0000 (21:26 -0000)
committerMarek Safar <marek.safar@gmail.com>
Thu, 14 Jun 2007 21:26:54 +0000 (21:26 -0000)
svn path=/trunk/mcs/; revision=79637

mcs/errors/gcs0411-8.cs [new file with mode: 0644]
mcs/errors/gtest-0411-8.cs [deleted file]

diff --git a/mcs/errors/gcs0411-8.cs b/mcs/errors/gcs0411-8.cs
new file mode 100644 (file)
index 0000000..55b8cb3
--- /dev/null
@@ -0,0 +1,18 @@
+// CS0411: The type arguments for method `C.Test<TR,TA>(C.Func<TR,TA>, C.Func<TR,TA>)' cannot be inferred from the usage. Try specifying the type arguments explicitly
+// Line: 16
+// Compiler options: -langversion:linq
+
+public class C
+{
+       public delegate TR Func<TR, TA> (TA t);
+       
+       public static TR Test<TR, TA> (Func<TR, TA> f, Func<TR, TA> f2)
+       {
+               return default (TR);
+       }
+       
+       public static void Main()
+       {
+               int s = Test (delegate (int i) { return 0; }, delegate (int i) { return "a"; });
+       }
+}
\ No newline at end of file
diff --git a/mcs/errors/gtest-0411-8.cs b/mcs/errors/gtest-0411-8.cs
deleted file mode 100644 (file)
index 55b8cb3..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// CS0411: The type arguments for method `C.Test<TR,TA>(C.Func<TR,TA>, C.Func<TR,TA>)' cannot be inferred from the usage. Try specifying the type arguments explicitly
-// Line: 16
-// Compiler options: -langversion:linq
-
-public class C
-{
-       public delegate TR Func<TR, TA> (TA t);
-       
-       public static TR Test<TR, TA> (Func<TR, TA> f, Func<TR, TA> f2)
-       {
-               return default (TR);
-       }
-       
-       public static void Main()
-       {
-               int s = Test (delegate (int i) { return 0; }, delegate (int i) { return "a"; });
-       }
-}
\ No newline at end of file