summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-19081.rs
blob: fbfe4c6f839117a6063d02e4460845af14435de2 (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() {}