rust/tests/ui/rfcs/rfc-2632-const-trait-impl/tilde_const_on_impl_bound.rs
2023-06-05 16:09:46 +00:00

18 lines
213 B
Rust

// check-pass
#![feature(const_trait_impl)]
#[const_trait]
trait Foo {
fn foo(&self) {}
}
struct Bar<T>(T);
impl<T: ~const Foo> Bar<T> {
const fn foo(&self) {
self.0.foo()
}
}
fn main() {}