2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / dcs0121.cs
blob968061f7196745774984b1aaaec52dbf8809e9e1
1 // CS0121: The call is ambiguous between the following methods or properties: `X.a(int, dynamic)' and `X.a(double, object)'
2 // Line: 16
4 class X
6 static void a (int i, dynamic d)
10 static void a (double d, object i)
14 public static void Main ()
16 a (0, 0);