a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
261 B
C#
18 lines
261 B
C#
// CS1501: No overload for method `Foo' takes `0' arguments
|
|
// Line: 15
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
public class C
|
|
{
|
|
public static void Foo ([DefaultParameterValue(null)] string s)
|
|
{
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
Foo ();
|
|
}
|
|
}
|