DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / type / type-shadow.rs
12345678
fn main() { type X = isize; type Y = X; if true { type X = &'static str; let y: Y = "hello"; //~ ERROR mismatched types } }