[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-friend-01.cs
blob3c5c1763c2d3149e83ef6f5c779dade3f3133784
1 // Compiler options: -r:gtest-friend-00-lib.dll -keyfile:InternalsVisibleTest2.snk
2 using System;
4 public class Test
6 public static void Main ()
8 FriendClass fc = new FriendClass ();
10 // We should be able to access it
11 FriendClass.StaticFriendField = 5;
12 fc.InstanceFriendField = 6;