rust/tests/ui/rfc-2632-const-trait-impl/tilde_const_on_impl_bound.rs
2023-01-11 09:32:08 +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() {}