You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a very subtle issue. It's not just that the line is followed by 'await'. It's that it is followed by 'await Task...'.
The issue here is that this is parsed as "Task.await Task..." So we make a local in scope called "Task" of type "Task.await". So when we look up the name "Task", we find this local (with a bogus type) and we can't get intellisense.
Ported from https://devdiv.visualstudio.com/DevDiv/_workitems?id=278222&triage=true&_a=edit
The text was updated successfully, but these errors were encountered: