rust/tests/ui/rfcs/rfc-2632-const-trait-impl/issue-79450.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
326 B
Rust
Raw Normal View History

#![feature(const_fmt_arguments_new)]
#![feature(const_trait_impl)]
#[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() {}