Merge pull request #4928 from kumpera/ptr_to_struct_intrinsic
[mono.git] / mcs / tests / gtest-friend-10.cs
1 // Compiler options: -r:gtest-friend-02-lib.dll -keyfile:InternalsVisibleTest2.snk
2 using System;
3
4 public class Test
5 {
6         public static void Main ()
7         {
8                 FriendClass fc = new FriendClass ();
9                 
10                 // We should be able to access them
11                 int a = FriendClass.StaticFriendProperty;
12                 int b = fc.InstanceFriendProperty;
13         }
14 }
15