[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / dtest-023.cs
blob9b4602cee796b048c040c350accfaf20e33cb5e6
1 struct S
5 class C
7 public static int Main ()
9 dynamic d = new S ();
10 bool b = d is S;
11 if (!b)
12 return 1;
14 return 0;