2017-10-31 12:21:58 -05:00
|
|
|
// Basic test for free regions in the NLL code. This test ought to
|
|
|
|
// report an error due to a reborrowing constraint. Right now, we get
|
|
|
|
// a variety of errors from the older, AST-based machinery (notably
|
|
|
|
// borrowck), and then we get the NLL error at the end.
|
|
|
|
|
2022-04-01 12:13:25 -05:00
|
|
|
// compile-flags:-Zverbose
|
2017-10-31 12:21:58 -05:00
|
|
|
|
2017-11-22 16:39:46 -06:00
|
|
|
fn foo(x: &u32) -> &'static u32 {
|
|
|
|
&*x
|
2021-11-12 23:43:43 -06:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2017-10-31 12:21:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|