[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-friend-05.cs
blobce6a1a648dff7e308b832b45f9e2527a940bdb74
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 it
11 FriendClass.StaticFriendField = 5;
12 fc.InstanceFriendField = 6;