do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-friend-12.cs
1 // Compiler options: -r:gtest-friend-02-lib.dll -keyfile:InternalsVisibleTest2.snk
2 using System;
3
4 public class Test
5 {
6         static void Main ()
7         {
8                 // We should be able to access them
9                 new InternalFriendClass ();
10                 new FriendClass.NestedInternalClass ();
11                 new FriendClass.NestedProtectedInternalClass ();
12         }
13 }
14