mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
216 B
Rust
18 lines
216 B
Rust
#![feature(const_trait_impl)]
|
|
|
|
#[const_trait]
|
|
trait Tr {
|
|
fn req(&self);
|
|
|
|
fn default() {}
|
|
}
|
|
|
|
struct S;
|
|
|
|
impl const Tr for u16 {
|
|
fn default() {}
|
|
} //~^^ ERROR not all trait items implemented
|
|
|
|
|
|
fn main() {}
|