[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / gtest-fixedbuffer-07.cs
blob289e7002dab949ace5c71eab52cb4147cc7f6a66
1 // Compiler options: -unsafe
3 public unsafe struct B {
4 private fixed int a[5];
7 public unsafe class C {
8 private B x;
10 public void Goo() {
11 fixed(B* y=&x) {
15 public static void Main () {}