2024-06-30 12:08:45 -05:00
|
|
|
//@ compile-flags: -Znext-solver
|
2024-10-30 13:03:44 -05:00
|
|
|
#![feature(const_trait_impl)]
|
2022-12-03 18:55:43 -06:00
|
|
|
|
|
|
|
#[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() {}
|