summaryrefslogtreecommitdiffstats
path: root/tests/ui/fn/fn-item-lifetime-bounds.rs
blob: 68a1d0ce9b0b2c01e63d4ba010e26df37602c345 (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
// check-pass
// known-bug: #84533

// Should fail. Lifetimes are checked correctly when `foo` is called, but NOT
// when only the lifetime parameters are instantiated.

use std::marker::PhantomData;

#[allow(dead_code)]
fn foo<'b, 'a>() -> PhantomData<&'b &'a ()> {
    PhantomData
}

#[allow(dead_code)]
#[allow(path_statements)]
fn caller<'b, 'a>() {
    foo::<'b, 'a>;
}

// In contrast to above, below code correctly does NOT compile.
// fn caller<'b, 'a>() {
//     foo::<'b, 'a>();
// }

// error: lifetime may not live long enough
//   --> src/main.rs:22:5
//   |
// 21 | fn caller<'b, 'a>() {
//   |           --  -- lifetime `'a` defined here
//   |           |
//   |           lifetime `'b` defined here
// 22 |     foo::<'b, 'a>();
//   |     ^^^^^^^^^^^^^^^ requires that `'a` must outlive `'b`
//   |
//   = help: consider adding the following bound: `'a: 'b`

fn main() {}