X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Fgen-23.cs;fp=mcs%2Ftests%2Fgen-23.cs;h=0000000000000000000000000000000000000000;hb=b0eff411fcc55fa6a7bbc5ee97bb592fe3204309;hp=c4c8b6a03ebc693688bf6fbf51a0aae758098b73;hpb=3757bc3f45e482dc17cb3b4e0a8dcd58c6777ee5;p=mono.git diff --git a/mcs/tests/gen-23.cs b/mcs/tests/gen-23.cs deleted file mode 100644 index c4c8b6a03eb..00000000000 --- a/mcs/tests/gen-23.cs +++ /dev/null @@ -1,35 +0,0 @@ -class Foo -{ - public void Hello () - { } - - public void World (T t) - { - Hello (); - } -} - -// -// This is some kind of a `recursive' declaration: -// -// Note that we're using the class we're currently defining (Bar) -// as argument of its parent. -// -// Is is important to run the resulting executable since this is -// both a test for the compiler and the runtime. -// - -class Bar : Foo -{ - public void Test () - { - Hello (); - World (this); - } -} - -class X -{ - static void Main () - { } -}