add SafeSerializationEventArgs
[mcs.git] / tests / gtest-friend-02.cs
blob9d791f3b926dca30b02e6de91921cb55d6e0dd3e
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 them
11 int a = FriendClass.StaticFriendProperty;
12 int b = fc.InstanceFriendProperty;