summaryrefslogtreecommitdiffstats
path: root/tests/ui/chalkify/lower_env3.rs
blob: 5b70c4abbb551c3e741f558e042a3d537105aee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass
// compile-flags: -Z trait-solver=chalk

#![allow(dead_code)]

trait Foo {
    fn foo(&self);
}

impl<T> Foo for T where T: Clone {
    fn foo(&self) {
    }
}

fn main() {
}