blob: 152eed5ac1d3807a5cbf69c14b25d0a9bae80eb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Test that structs with higher-ranked where clauses don't generate
// "outlives" requirements. Issue #22246.
#![allow(dead_code)]
pub trait TheTrait<'b> {
type TheAssocType;
}
pub struct TheType<'b> {
m: [fn(&'b()); 0]
}
impl<'a,'b> TheTrait<'a> for TheType<'b> {
type TheAssocType = &'b ();
}
pub struct WithHrAssoc<T>
where for<'a> T : TheTrait<'a>
{
m: [T; 0]
}
fn with_assoc<'a,'b>() {
// We get an error because 'b:'a does not hold:
let _: &'a WithHrAssoc<TheType<'b>> = loop { };
//~^ ERROR lifetime may not live long enough
}
pub trait TheSubTrait : for<'a> TheTrait<'a> {
}
impl<'b> TheSubTrait for TheType<'b> { }
pub struct WithHrAssocSub<T>
where T : TheSubTrait
{
m: [T; 0]
}
fn with_assoc_sub<'a,'b>() {
// The error here is just because `'b:'a` must hold for the type
// below to be well-formed, it is not related to the HR relation.
let _: &'a WithHrAssocSub<TheType<'b>> = loop { };
//~^ ERROR lifetime may not live long enough
}
fn main() {
}
|