2023-12-14 06:11:28 -06:00
|
|
|
// compile-flags: -Znext-solver
|
2023-09-14 12:24:18 -05:00
|
|
|
// check-pass
|
|
|
|
|
|
|
|
#![feature(effects)]
|
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
|
|
|
#[const_trait]
|
|
|
|
trait Foo {
|
|
|
|
fn foo();
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Bar {}
|
|
|
|
|
|
|
|
impl const Foo for i32 {
|
|
|
|
fn foo() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> const Foo for T where T: Bar {
|
|
|
|
fn foo() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|