2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
|
|
|
|
2018-09-14 10:20:28 +00:00
|
|
|
#![allow(dead_code)]
|
2017-12-23 13:29:01 +00:00
|
|
|
trait Trait<T> {}
|
|
|
|
struct Foo<U, V=i32>(U, V) where U: Trait<V>;
|
|
|
|
|
2018-01-22 15:36:51 +00:00
|
|
|
trait Marker {}
|
2018-01-21 14:09:06 +00:00
|
|
|
struct TwoParams<T, U>(T, U);
|
2018-01-22 15:36:51 +00:00
|
|
|
impl Marker for TwoParams<i32, i32> {}
|
2018-02-09 10:42:11 +00:00
|
|
|
|
|
|
|
// Clauses with more than 1 param are not checked.
|
2018-01-22 15:36:51 +00:00
|
|
|
struct IndividuallyBogus<T = i32, U = i32>(TwoParams<T, U>) where TwoParams<T, U>: Marker;
|
2018-02-09 10:42:11 +00:00
|
|
|
struct BogusTogether<T = u32, U = i32>(T, U) where TwoParams<T, U>: Marker;
|
2018-01-21 14:09:06 +00:00
|
|
|
// Clauses with non-defaulted params are not checked.
|
2018-01-22 15:36:51 +00:00
|
|
|
struct NonDefaultedInClause<T, U = i32>(TwoParams<T, U>) where TwoParams<T, U>: Marker;
|
|
|
|
struct DefaultedLhs<U, V=i32>(U, V) where V: Trait<U>;
|
2018-02-09 10:42:11 +00:00
|
|
|
// Dependent defaults are not checked.
|
|
|
|
struct Dependent<T, U = T>(T, U) where U: Copy;
|
|
|
|
trait SelfBound<T: Copy=Self> {}
|
2018-02-14 22:55:37 +00:00
|
|
|
// Not even for well-formedness.
|
|
|
|
struct WellFormedProjection<A, T=<A as Iterator>::Item>(A, T);
|
2018-01-22 15:36:51 +00:00
|
|
|
|
2018-04-05 18:21:56 +00:00
|
|
|
// Issue #49344, predicates with lifetimes should not be checked.
|
|
|
|
trait Scope<'a> {}
|
|
|
|
struct Request<'a, S: Scope<'a> = i32>(S, &'a ());
|
|
|
|
|
2017-12-23 13:29:01 +00:00
|
|
|
fn main() {}
|