DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / self / issue-61882.rs
123456789
struct A<T>(T); impl A<bool> { const B: A<u8> = Self(0); //~^ ERROR mismatched types //~| ERROR mismatched types } fn main() {}