mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
17 lines
208 B
Rust
17 lines
208 B
Rust
#![feature(const_trait_impl)]
|
|
|
|
struct S;
|
|
#[const_trait]
|
|
trait T {
|
|
fn foo();
|
|
}
|
|
|
|
fn non_const() {}
|
|
|
|
impl const T for S {
|
|
fn foo() { non_const() }
|
|
//~^ ERROR cannot call non-const fn
|
|
}
|
|
|
|
fn main() {}
|