for TARGET_J2EE only:
[mono.git] / mcs / tests / gtest-friend-13-lib.cs
1 // Compiler options: -t:library
2 using System;
3 using System.Runtime.CompilerServices;
4
5 [assembly: InternalsVisibleTo ("gtest-friend-13")]
6
7 public class FriendClass
8 {
9         protected internal virtual void Test ()
10         {
11         }
12 }
13