mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-30 07:25:31 +00:00
Before:
impl<T, U> UnwindSafe for (T, ...) where
T: UnwindSafe,
U: UnwindSafe,
After:
impl<T> UnwindSafe for (T, ...) where
T: UnwindSafe,