blob: b8b9e07b3bd604d32e6bfe25d5b86ded54aaeb8e [file] [log] [blame] [edit]
//@ compile-flags: -Znext-solver
#![allow(incomplete_features)]
#![feature(const_fmt_arguments_new)]
#![feature(const_trait_impl, effects)]
#[const_trait]
trait Tr {
fn req(&self);
fn prov(&self) {
println!("lul"); //~ ERROR: cannot call non-const fn `_print` in constant functions
self.req();
}
}
struct S;
impl const Tr for S {
fn req(&self) {}
}
fn main() {}