Merge pull request #4928 from kumpera/ptr_to_struct_intrinsic
[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         internal virtual void Test_2 ()
14         {
15         }
16 }
17