about summary refs log tree commit diff
path: root/tests/ui/issues/issue-19632.rs
blob: a99ab5f5ebe1d632f9f5e4fed93b40970de77342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ check-pass
#![allow(dead_code)]

trait PoolManager {
    type C;
    fn dummy(&self) { }
}

struct InnerPool<M: PoolManager> {
    manager: M,
}

fn main() {}