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.
|
|
|
|
|
2018-04-09 04:28:00 -05:00
|
|
|
// compile-flags:-Zborrowck=mir -Zverbose
|
2017-10-31 12:21:58 -05:00
|
|
|
|
|
|
|
fn foo<'a, 'b>(x: &'a u32, y: &'b u32) -> &'b u32 {
|
2017-11-22 16:39:46 -06:00
|
|
|
&*x
|
2018-08-31 12:27:11 -05:00
|
|
|
//~^ ERROR unsatisfied lifetime constraints
|
2017-10-31 12:21:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|