Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
#![feature(const_trait_impl)]
#![feature(min_specialization)]
#[const_trait]
trait Foo {
fn foo();
}
impl const Foo for u32 {
default fn foo() {}
fn main() {}