Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid infinite generics recursion in SynchronizationContextScheduler
The infinitive generics recursion interacts poorly with AOT. The AOT compilers have hard figuring out where the stop generating the code for generics with infinite recursion. They either fail or produce large images by giving up once the generics get too complex. This change reverts a small part of #500 that introduced infinite generic recursion and adds comment. Fixes dotnet/corert#7920
- Loading branch information