]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-19631.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / issues / issue-19631.rs
1 // check-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 trait PoolManager {
6     type C;
7     fn dummy(&self) { }
8 }
9
10 struct InnerPool<M> {
11     manager: M,
12 }
13
14 impl<M> InnerPool<M> where M: PoolManager {}
15
16 fn main() {}