[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / tests / gtest-433.cs
1 // Compiler options: -r:gtest-433-lib.dll
2
3 using C1 = Blah.Class1;
4 using C2 = Blah.Class2;
5 using Cit = Blah.Class2.Citrus;
6
7 public class M 
8 {
9     public static void Main() 
10     {
11         // access an internal type
12         C1 a = new C1();
13         a.Test();
14
15         C2 b = new C2();
16         // access an internal member of a public type
17         b.Test();
18
19         Cit.Lime.ToString ();
20     }
21 }