1
Fork 0
rust/tests/ui/rfcs/rfc-2632-const-trait-impl/tilde_const_on_impl_bound.rs
2023-12-18 01:48:49 +01:00

17 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() {}