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
Int32 needs to be qualified with a System. to be used, alternatively Int32 works in Foo2Async because it gets transformed to the syntax keyword int.
Please note that if you have <ImplicitUsings>enable</ImplicitUsings> in your csproj, props or targets you will not be able to reproduce this, because then the System namespace will be implicit.
The text was updated successfully, but these errors were encountered:
Consider the following cases
1, 2, 3 works, but
Foo4Async
will fail to compile because it cannot find Int32 in the following generated codeInt32
needs to be qualified with aSystem.
to be used, alternativelyInt32
works inFoo2Async
because it gets transformed to the syntax keywordint
.Please note that if you have
<ImplicitUsings>enable</ImplicitUsings>
in your csproj, props or targets you will not be able to reproduce this, because then the System namespace will be implicit.The text was updated successfully, but these errors were encountered: