mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
23 lines
278 B
Rust
23 lines
278 B
Rust
// compile-flags: -Ztrait-solver=next
|
|
// 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() {}
|