[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-friend-13.cs
blob1cd8b593dd6d4bff07d73995bcd25326ab517e11
1 // Compiler options: -r:gtest-friend-13-lib.dll
3 using System;
5 public class B : FriendClass
7 protected internal override void Test ()
11 internal override void Test_2 ()
13 new FriendClass().Test ();
17 public class Test
19 public static void Main ()
21 var b = new B ();
22 b.Test_2 ();