Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![feature(generic_const_items)]
#![allow(incomplete_features, dead_code)]
//@ check-pass
trait Foo {
const BAR: bool
where
Self: Sized;
}
fn foo(_: &dyn Foo) {}
fn main() {}