rust/tests/ui/rfc-2632-const-trait-impl/trait-where-clause-self-referential.rs
2023-01-11 09:32:08 +00:00

25 lines
258 B
Rust

// check-pass
#![feature(const_trait_impl)]
#[const_trait]
trait Foo {
fn bar() where Self: ~const Foo;
}
struct S;
impl Foo for S {
fn bar() {}
}
fn baz<T: Foo>() {
T::bar();
}
const fn qux<T: ~const Foo>() {
T::bar();
}
fn main() {}