a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
177 B
C#
15 lines
177 B
C#
// CS4009: `C.Main()': an entry point cannot be async method
|
|
// Line: 8
|
|
|
|
class C
|
|
{
|
|
public static async void Main ()
|
|
{
|
|
await Call ();
|
|
}
|
|
|
|
static async void Call ()
|
|
{
|
|
}
|
|
}
|