2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0121.cs
blobdb38d1c887378bb2fe023f0473a169505b6772cc
1 // cs0121.cs: 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);