remove unused using
[mcs.git] / tests / gtest-friend-07.cs
bloba32955c7781a0c03918c5e36bee10059bb37a0a2
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 FriendClass.StaticFriendMethod ();
12 fc.InstanceFriendMethod ();