2018-12-09 16:26:16 -06:00
|
|
|
#![allow(
|
|
|
|
unused_variables,
|
2022-08-11 12:42:16 -05:00
|
|
|
clippy::disallowed_names,
|
2018-12-09 16:26:16 -06:00
|
|
|
clippy::needless_pass_by_value,
|
|
|
|
dead_code
|
|
|
|
)]
|
2018-05-21 10:45:48 -05:00
|
|
|
|
2024-09-24 04:58:04 -05:00
|
|
|
// This should not compile-fail with:
|
|
|
|
//
|
|
|
|
// error[E0277]: the trait bound `T: Foo` is not satisfied
|
|
|
|
// See https://github.com/rust-lang/rust-clippy/issues/2760
|
2018-05-21 10:45:48 -05:00
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
type Bar;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Baz<T: Foo> {
|
|
|
|
bar: T::Bar,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn take<T: Foo>(baz: Baz<T>) {}
|
|
|
|
|
|
|
|
fn main() {}
|