[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-friend-03.cs
blobe40be8bbb95d86e1db2e621554aed90bceb8deff
1 // Compiler options: -r:gtest-friend-00-lib.dll -keyfile:InternalsVisibleTest2.snk
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 ();