mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-08 13:35:48 +00:00
16 lines
199 B
Rust
16 lines
199 B
Rust
#![feature(const_trait_impl, effects)]
|
|
|
|
#[const_trait]
|
|
pub trait Tr {
|
|
fn a(&self) {}
|
|
|
|
fn b(&self) {
|
|
().a()
|
|
//~^ ERROR the trait bound
|
|
}
|
|
}
|
|
|
|
impl Tr for () {}
|
|
|
|
fn main() {}
|