2018-12-09 23:26:16 +01:00
|
|
|
#![allow(
|
|
|
|
unused_variables,
|
|
|
|
clippy::blacklisted_name,
|
|
|
|
clippy::needless_pass_by_value,
|
|
|
|
dead_code
|
|
|
|
)]
|
2018-05-21 17:45:48 +02:00
|
|
|
|
2019-02-06 07:45:57 +01:00
|
|
|
/// This should not compile-fail with:
|
|
|
|
///
|
|
|
|
/// error[E0277]: the trait bound `T: Foo` is not satisfied
|
2019-01-31 02:15:29 +01:00
|
|
|
// See rust-lang/rust-clippy#2760.
|
2018-05-21 17:45:48 +02:00
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
type Bar;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Baz<T: Foo> {
|
|
|
|
bar: T::Bar,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn take<T: Foo>(baz: Baz<T>) {}
|
|
|
|
|
|
|
|
fn main() {}
|