[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0473.cs
blobd24eb1e06ad154376dbbda337937bba2abec43ca
1 // CS0473: Explicit interface implementation `A.I<int,int>.Foo(int)' matches more than one interface member. Consider using a non-explicit implementation instead
2 // Line: 13
3 // Compiler options: -warnaserror -warn:2
5 interface I<T, U>
7 void Foo (U t);
8 void Foo (T u);
11 class A : I<int, int>
13 void I<int, int>.Foo (int arg)
17 public void Foo (int arg)