Merge pull request #5272 from lambdageek/bug-58421
[mono.git] / mcs / errors / cs0839-2.cs
1 // CS0839: An argument is missing
2 // Line: 12
3
4 class Test
5 {
6         static void Foo (int a, bool b)
7         {
8         }
9
10         static void Main ()
11         {
12                 Foo (, 1);
13         }
14 }