2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / dcs1501.cs
blob6969803066d5b8b75bfc05170b14013d6d639373
1 // CS1501: No overload for method `TestCall' takes `1' arguments
2 // Line: 13
4 class C
6 static void TestCall (byte b, int a)
10 public static void Main ()
12 dynamic d = 0;
13 TestCall (d);