mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-25 22:12:08 +00:00
15 lines
196 B
Rust
15 lines
196 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
trait PoolManager {
|
|
type C;
|
|
fn dummy(&self) { }
|
|
}
|
|
|
|
struct InnerPool<M: PoolManager> {
|
|
manager: M,
|
|
}
|
|
|
|
fn main() {}
|