Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs1501-14.cs
1 // CS1501: No overload for method `Foo' takes `0' arguments
2 // Line: 15
3
4 using System;
5 using System.Runtime.InteropServices;
6
7 public class C
8 {
9         public static void Foo ([DefaultParameterValue(null)] string s)
10         {
11         }
12
13         public static void Main ()
14         {
15                 Foo ();
16         }
17 }