w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs1501-5.cs
blob6a51f13592c8db1da9f9030bc078c55ca004a13e
1 // CS1501: No overload for method `Foo' takes `1' arguments
2 // Line: 12
4 public class Test
6 static void Foo (int a, int b = 1, int c = 2)
10 public static void Main ()
12 Foo (c : -1);