mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 20:45:45 +03:00
475b00aa40
Add `#[inline]` modifier to `TypeId::of` It was already inlined but it happened only in 4th InlinerPass on my testcase. With `#[inline]` modifier it happens on 2nd pass. Closes #74362