[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-433.cs
blob80e1141213d52d17d76f1c8cd8633dc4be137438
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 public 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 ();