mirror of https://github.com/rust-lang/rust
23 lines
319 B
Rust
23 lines
319 B
Rust
//@ compile-flags: -Znext-solver
|
|
//@ check-pass
|
|
|
|
#![feature(effects)] //~ WARN the feature `effects` is incomplete
|
|
#![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() {}
|