mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 01:30:40 +00:00
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
16 lines
196 B
Rust
16 lines
196 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
trait PoolManager {
|
|
type C;
|
|
fn dummy(&self) { }
|
|
}
|
|
|
|
struct InnerPool<M> {
|
|
manager: M,
|
|
}
|
|
|
|
impl<M> InnerPool<M> where M: PoolManager {}
|
|
|
|
fn main() {}
|