[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0121.cs
blob5c5d1cb3c93abebd0a508e2fdbad2cdd56ebcf00
1 // CS0121: The call is ambiguous between the following methods or properties: `X.a(int, double)' and `X.a(double, int)'
2 // Line: 15
4 class X {
5 static void a (int i, double d)
9 static void a (double d, int i)
13 public static void Main ()
15 a (0, 0);