blob: 337a4cf4140e87b9f9b688f4e4825e5981fc4928 [file] [log] [blame] [edit]
#![feature(trait_alias, const_trait_impl)]
const trait Bar {}
const trait Foo = Bar;
impl const Bar for () {}
// const impl gets reformatted to impl const.. for now
impl const Bar for u8 {}
struct X;
const impl X {}