about summary refs log tree commit diff
path: root/tests/ui/associated-types/issue-19081.rs
blob: f502915eac3b1db21a55257501b10edf60a6706c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ check-pass
pub trait Hasher {
    type State;

    fn hash<T: Hash<
        <Self as Hasher>::State
    >>(&self, value: &T) -> u64;
}

pub trait Hash<S> {
    fn hash(&self, state: &mut S);
}

fn main() {}