[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / gtest-friend-02.cs
blob114666981ebb3eac2040d09a609dac3671bef095
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 int a = FriendClass.StaticFriendProperty;
12 int b = fc.InstanceFriendProperty;