cleol
[mcs.git] / tests / gtest-friend-09.cs
blob1d592c816ba211be083e9a227ca164fa307bde28
1 // Compiler options: -r:gtest-friend-02-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 FriendClass.StaticFriendMethod ();
12 fc.InstanceFriendMethod ();