Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / gtest-friend-05.cs
1 // Compiler options: -r:gtest-friend-01-lib.dll
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 it
11                 FriendClass.StaticFriendField = 5;
12                 fc.InstanceFriendField = 6;
13         }
14 }
15