blob: 39829adbaf4b53bb718460a146993545fce38d3a [file]
//@ check-pass
//@ compile-flags: -Znext-solver
#![feature(const_trait_impl)]
const 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() {}