[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0111-4.cs
blob906e6dff2dc9e201905d271a1d4a86d61982c6b3
1 // CS0111: A member `C.Foo<U>(U)' is already defined. Rename this member or use different parameter types
2 // Line : 12
4 public class C
6 void Foo (int i)
10 void Foo<T> (T i)
14 void Foo<U> (U i)