Open
Description
If we can inline all the enumerator methods then we can stack allocate the enumerator.
See #111799 (comment) for one example.
- for non-empty
List<T>
we may fail to inlineMoveNextRare
as it may not get called by instrumented methods. - for empty collections we may fail to inline
get_Current
as it never gets called