rust/tests/ui/rfc-2632-const-trait-impl/default-method-body-is-const-same-trait-ck.rs
2023-01-11 09:32:08 +00:00

16 lines
190 B
Rust

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