mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
14 lines
162 B
Rust
14 lines
162 B
Rust
fn repro() {
|
|
trait Foo {
|
|
type Bar;
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
struct Baz<T: Foo> {
|
|
field: T::Bar,
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
repro();
|
|
}
|