2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-433-lib.cs
blobba68f00c432dddd1e3af63ace839cfccf0304cea
1 // Compiler options: -target:library
3 using System.Runtime.CompilerServices;
4 using System;
6 [assembly:InternalsVisibleTo("gtest-433")]
8 namespace Blah {
10 // internal by default
11 class Class1
13 public void Test()
15 Console.WriteLine("Class1.Test");
19 // public type with internal member
20 public class Class2
22 internal void Test()
24 Console.WriteLine("Class2.Test");
27 internal enum Citrus {
28 Lemon,
29 Lime,
30 Orange