blob: 5ba5036ce277ab4597a949dd9c496ecc50a77fd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//@ compile-flags: -Znext-solver
#![feature(const_trait_impl)]
#[const_trait]
trait Tr {
fn req(&self);
fn prov(&self) {
println!("lul"); //~ ERROR: cannot call non-const function `_print` in constant functions
self.req();
}
}
struct S;
impl const Tr for S {
fn req(&self) {}
}
fn main() {}
|