mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-22 00:20:44 +00:00
13 lines
147 B
Rust
13 lines
147 B
Rust
#![feature(const_trait_impl, effects)]
|
|
|
|
pub const fn foo() {}
|
|
|
|
#[const_trait]
|
|
pub trait Bar {
|
|
fn bar();
|
|
}
|
|
|
|
impl Bar for () {
|
|
fn bar() {}
|
|
}
|