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