Use correct naming, add 4.0 profile
[mono.git] / mcs / tests / ltest-18.cs
diff --git a/mcs/tests/ltest-18.cs b/mcs/tests/ltest-18.cs
deleted file mode 100644 (file)
index b279be9..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-
-static class Test
-{
-       public static void Foo<T1, T2, TResult> (
-               T1 arg1, T2 arg2, Func<T1, T2, TResult> func)
-       {
-               Bar (arg1, arg2, (a, b, _) => func (a, b));
-       }
-
-       public static void Bar<T1, T2, TResult> (
-               T1 arg1, T2 arg2, Func<T1, T2, int, TResult> func)
-       {
-       }
-
-       public static void Main ()
-       {
-       }
-}