The following code emits CS0017 correctly:
public class C
{
public static void Main() { }
public static void Main(string[] args) { }
}
However, the following code doesn't emit CS0017, which I believe should be emitted.
public class C
{
public static async Task Main() { }
public static void Main(string[] args) { }
}
The following code emits CS0017 correctly:
However, the following code doesn't emit CS0017, which I believe should be emitted.