dlr bug
[mcs.git] / tests / gtest-friend-06.cs
blob05190455052a326e31b06bc76e8a984274ecfd9e
1 // Compiler options: -r:gtest-friend-01-lib.dll
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;