X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mcs%2Ftests%2Fgen-18.cs;fp=mcs%2Ftests%2Fgen-18.cs;h=0000000000000000000000000000000000000000;hb=b0eff411fcc55fa6a7bbc5ee97bb592fe3204309;hp=92f38ce86cf00b08f94d4be4505a08808493e9ed;hpb=796e8a8aae4c2205d8455c26d03389da7386e455;p=mono.git diff --git a/mcs/tests/gen-18.cs b/mcs/tests/gen-18.cs deleted file mode 100644 index 92f38ce86cf..00000000000 --- a/mcs/tests/gen-18.cs +++ /dev/null @@ -1,22 +0,0 @@ -public class Stack -{ - public Stack () - { } - - public void Hello (T t) - { } -} - -public class X -{ - public static void Foo (Stack stack) - { - stack.Hello ("Hello World"); - } - - static void Main () - { - Stack stack = new Stack (); - Foo (stack); - } -}