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

#![allow(dead_code)]

trait Foo {
    fn foo(&self);
}

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

fn main() {
}