X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Ftest-87.cs;h=aaa809f8bc4b153bed2ab7a5640c617d227189f8;hb=7b64bbfefeff6a2b1660567a5994784b0ea903b6;hp=56c53c9c7ce783058382bbb2868cfe25b26d7451;hpb=aca81ed521c2611ef1bd7d55a85d08268ba1f61b;p=mono.git diff --git a/mcs/tests/test-87.cs b/mcs/tests/test-87.cs old mode 100755 new mode 100644 index 56c53c9c7ce..aaa809f8bc4 --- 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; + } +}