[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-881.cs
blob08f4946ab3d263999a210161969757f5cd657017
1 using System;
3 namespace A
5 class XAttribute : Attribute { }
8 namespace B
10 class XAttribute : Attribute { }
13 namespace C
15 using A;
16 using B;
17 using X = A.XAttribute;
19 [X]
20 class Test
22 public static void Main ()