codeowners update
[mono.git] / mcs / tests / test-partial-19.cs
1 using System;
2
3 namespace Bug
4 {
5         public static partial class GL
6         {
7                 static partial class Core
8                 {
9                         internal static bool A () { return true; }
10                 }
11                 
12                 /*internal static partial class Bar
13                 {
14                         internal static bool A () { return true; }
15                 }*/
16         }
17
18         partial class GL
19         {
20                 public static void Main ()
21                 {
22                         Core.A ();
23                         //Bar.A ();
24                 }
25
26                 internal partial class Core
27                 {
28                 }
29                 
30                 /*partial class Bar
31                 {
32                 }*/
33         }
34 }