blob: 60da408c8115351859b9bf2bcd113882a0927a93 [file] [log] [blame]
// All constant items (associated or otherwise) may syntactically use `_` as a name.
// check-pass
fn main() {}
#[cfg(FALSE)]
const _: () = {
pub trait A {
const _: () = ();
}
impl A for () {
const _: () = ();
}
impl dyn A {
const _: () = ();
}
};