mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
11 lines
200 B
Rust
11 lines
200 B
Rust
#![feature(const_trait_impl)]
|
|
|
|
#[const_trait]
|
|
trait A {
|
|
#[const_trait] //~ ERROR attribute should be applied
|
|
fn foo(self);
|
|
}
|
|
|
|
#[const_trait] //~ ERROR attribute should be applied
|
|
fn main() {}
|