DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-1 / tests / ui / associated-type-bounds / consts.rs
12345678
pub fn accept(_: impl Trait<K: Copy>) {} //~^ ERROR expected type, found constant pub trait Trait { const K: i32; } fn main() {}