]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/ty-outlives/ty-param-fn-body.rs
Auto merge of #53830 - davidtwco:issue-53228, r=nikomatsakis
[rust.git] / src / test / ui / nll / ty-outlives / ty-param-fn-body.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-flags:-Zborrowck=mir
12
13 // Test that we assume that universal types like `T` outlive the
14 // function body.
15
16 #![allow(warnings)]
17
18 use std::cell::Cell;
19
20 // No errors here, because `'a` is local to the body.
21 fn region_within_body<T>(t: T) {
22     let some_int = 22;
23     let cell = Cell::new(&some_int);
24     outlives(cell, t)
25 }
26
27 // Error here, because T: 'a is not satisfied.
28 fn region_static<'a, T>(cell: Cell<&'a usize>, t: T) {
29     outlives(cell, t)
30     //~^ ERROR the parameter type `T` may not live long enough
31 }
32
33 fn outlives<'a, T>(x: Cell<&'a usize>, y: T)
34 where
35     T: 'a,
36 {
37 }
38
39 fn main() {}