blob: a20df9c9d4cd19400fee61cfac64359ce0261c17 [file] [log] [blame] [edit]
//@ check-pass
#![allow(dead_code)]
//@ pretty-expanded FIXME #23616
trait PoolManager {
type C;
fn dummy(&self) { }
}
struct InnerPool<M> {
manager: M,
}
impl<M> InnerPool<M> where M: PoolManager {}
fn main() {}