New test.
authorMarek Safar <marek.safar@gmail.com>
Fri, 14 Sep 2007 20:25:54 +0000 (20:25 -0000)
committerMarek Safar <marek.safar@gmail.com>
Fri, 14 Sep 2007 20:25:54 +0000 (20:25 -0000)
svn path=/trunk/mcs/; revision=85843

mcs/tests/test-partial-19.cs [new file with mode: 0644]

diff --git a/mcs/tests/test-partial-19.cs b/mcs/tests/test-partial-19.cs
new file mode 100644 (file)
index 0000000..98f1c2b
--- /dev/null
@@ -0,0 +1,34 @@
+using System;
+
+namespace Bug
+{
+       public static partial class GL
+       {
+               static partial class Core
+               {
+                       internal static bool A () { return true; }
+               }
+               
+               /*internal static partial class Bar
+               {
+                       internal static bool A () { return true; }
+               }*/
+       }
+
+       partial class GL
+       {
+               public static void Main ()
+               {
+                       Core.A ();
+                       //Bar.A ();
+               }
+
+               internal partial class Core
+               {
+               }
+               
+               /*partial class Bar
+               {
+               }*/
+       }
+}
\ No newline at end of file