rust/tests/ui/rfcs/rfc-2632-const-trait-impl/default-method-body-is-cons...

16 lines
199 B
Rust

#![feature(const_trait_impl, effects)]
#[const_trait]
pub trait Tr {
fn a(&self) {}
fn b(&self) {
().a()
//~^ ERROR the trait bound
}
}
impl Tr for () {}
fn main() {}