Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / gtest-433.cs
blobdd7ac8f0ba2d71768e365652253249db20413920
1 // Compiler options: -r:gtest-433-lib.dll
3 using C1 = Blah.Class1;
4 using C2 = Blah.Class2;
5 using Cit = Blah.Class2.Citrus;
7 public class M
9 static void Main()
11 // access an internal type
12 C1 a = new C1();
13 a.Test();
15 C2 b = new C2();
16 // access an internal member of a public type
17 b.Test();
19 Cit.Lime.ToString ();