Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-friend-13.cs
1 // Compiler options: -r:gtest-friend-13-lib.dll
2
3 using System;
4
5 public class B : FriendClass
6 {
7         protected internal override void Test ()
8         {
9         }
10         
11         internal override void Test_2 ()
12         {
13                 new FriendClass().Test ();
14         }
15 }
16
17 public class Test
18 {
19         public static void Main ()
20         {
21                 var b = new B ();
22                 b.Test_2 ();
23         }
24 }
25