rust/tests/ui/traits/next-solver/canonicalize-effect-var.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
274 B
Rust
Raw Normal View History

//@ compile-flags: -Znext-solver
//@ check-pass
2023-09-14 17:24:18 +00:00
#![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() {}