From: Martin Baulig Date: Tue, 21 Jun 2005 09:46:14 +0000 (-0000) Subject: New tests. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=089d73bf7d7ce68122de0a9529b3d0ea5fb0423e;p=mono.git New tests. svn path=/trunk/mcs/; revision=46287 --- diff --git a/mcs/tests/gtest-172-lib.cs b/mcs/tests/gtest-172-lib.cs new file mode 100755 index 00000000000..5cda449077b --- /dev/null +++ b/mcs/tests/gtest-172-lib.cs @@ -0,0 +1,6 @@ +// Compiler options: -t:library +public class A { + public class Nil : A { + public static Nil _N_constant_object = new Nil (); + } +} diff --git a/mcs/tests/gtest-172.cs b/mcs/tests/gtest-172.cs new file mode 100755 index 00000000000..9d119526c0b --- /dev/null +++ b/mcs/tests/gtest-172.cs @@ -0,0 +1,7 @@ +// Compiler options: /r:gtest-172-lib.dll +class M { + static void Main () { + A x = A.Nil._N_constant_object; + } +} +