summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/canonicalize-effect-var.rs
blob: 35b69ed1a6b0369a6e5fa70133e8e17e97bf44d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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() {}