We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re: https://github.com/dotnet/runtimelab/pull/2951/files#r1960790542
There is an assert:
// Struct async thunks not yet implemented _ASSERTE(!this->GetMethodTable()->IsValueType());
It can be hit by Async2Struct testcase by changing the void Async() entry point to be an ordinary async method.
Async2Struct
void Async()
private static async Task Async() // not async2
Some of the scenarios in the test may become irrelevant since it will be C# responsibility to capture by value.
However the general case of an async struct method still needs to be handled, so this needs a follow up.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Re: https://github.com/dotnet/runtimelab/pull/2951/files#r1960790542
There is an assert:
It can be hit by
Async2Struct
testcase by changing thevoid Async()
entry point to be an ordinary async method.Some of the scenarios in the test may become irrelevant since it will be C# responsibility to capture by value.
However the general case of an async struct method still needs to be handled, so this needs a follow up.
The text was updated successfully, but these errors were encountered: