blob: 7becb01027d758ef26e485c4291f338204028af4 [file] [edit]
#![feature(const_trait_impl)]
const trait Tr {
fn req(&self);
fn default() {}
}
struct S;
impl const Tr for u16 {
fn default() {}
} //~^^ ERROR not all trait items implemented
fn main() {}