2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-friend-05.cs
blob80f070a038008ee7766c54e335b4ef90890c8b49
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 it
11 FriendClass.StaticFriendField = 5;
12 fc.InstanceFriendField = 6;