2017-10-31 13:21:58 -04: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 13:13:25 -04:00
|
|
|
// compile-flags:-Zverbose
|
2017-10-31 13:21:58 -04:00
|
|
|
|
2017-11-22 17:39:46 -05:00
|
|
|
fn foo<'a>(x: &'a u32) -> &'static u32 {
|
|
|
|
&*x
|
2018-08-31 19:27:11 +02:00
|
|
|
//~^ ERROR
|
2017-10-31 13:21:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|