The below code should have generated the warnings which does in other ide's. public async Task<string> DemoTask() { return "test"; } Ideally I would have expected a warning for missing the "await"
The below code should have generated the warnings which does in other ide's.
public async Task DemoTask() {
return "test";
}
Ideally I would have expected a warning for missing the "await"