mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-22 02:00:00 +03:00
85b0c2ffbb
Before:
impl<T, U> UnwindSafe for (T, ...) where
T: UnwindSafe,
U: UnwindSafe,
After:
impl<T> UnwindSafe for (T, ...) where
T: UnwindSafe,