mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 09:07:20 +00:00
18 lines
230 B
Rust
18 lines
230 B
Rust
// check-pass
|
|
#![feature(const_trait_impl, effects)]
|
|
|
|
#[const_trait]
|
|
trait Foo {
|
|
fn foo(&self) {}
|
|
}
|
|
|
|
struct Bar<T>(T);
|
|
|
|
impl<T> Bar<T> {
|
|
const fn foo(&self) where T: ~const Foo {
|
|
self.0.foo()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|