From: Miguel de Icaza Date: Thu, 19 Sep 2002 21:48:10 +0000 (-0000) Subject: Improve test X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=14d6027ca5ba7c5cabadecd8dfed3d28353d5b81;p=mono.git Improve test svn path=/trunk/mcs/; revision=7628 --- diff --git a/mcs/tests/test-87.cs b/mcs/tests/test-87.cs index 56c53c9c7ce..aaa809f8bc4 100755 --- a/mcs/tests/test-87.cs +++ b/mcs/tests/test-87.cs @@ -20,7 +20,7 @@ class Top { int get_two (); } - class XA : A { + public class XA : A { public int get_one () { return 1; } } @@ -41,7 +41,22 @@ class Top { return 2; if (b.get_two () != 2) return 3; + + XB [] xb = null; + return 0; } } + +// +// The following tests that the compiler will actually properly +// find the types that are requested (they are nested types) +// +class Other { + public void X () + { + Top.XA xa = null; + Top.XA [] xb = null; + } +}