Switch to compiler-tester
[mono.git] / mcs / tests / gen-150.cs
diff --git a/mcs/tests/gen-150.cs b/mcs/tests/gen-150.cs
deleted file mode 100644 (file)
index 31cbe55..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-static class Test1 {
-  public interface IOp<T> {
-    T Func(uint v);
-  }
-  public struct Op : IOp<ushort>, IOp<uint> {
-    ushort IOp<ushort>.Func(uint v) { return (ushort )(v * 2); }
-    uint IOp<uint>.Func(uint v) { return v * 4; }
-  }
-  static void Foo<T,OP>(uint v) where T:struct where OP : IOp<T> {
-    OP op = default(OP);
-    System.Console.WriteLine( op.Func(v) );
-  }
-  static public void Main() {
-    Foo<ushort, Op>(100);
-    Foo<uint, Op>(100);
-  }
-};