[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-friend-07.cs
bloba3af89d68eb83570454467110ae2adf733c23941
1 // Compiler options: -r:gtest-friend-01-lib.dll
2 using System;
4 public class Test
6 public static void Main ()
8 FriendClass fc = new FriendClass ();
10 // We should be able to access them
11 FriendClass.StaticFriendMethod ();
12 fc.InstanceFriendMethod ();