2022-04-01 12:13:25 -05:00
|
|
|
// revisions: base polonius
|
2021-08-03 12:42:07 -05:00
|
|
|
// ignore-compare-mode-polonius
|
2022-04-01 12:13:25 -05:00
|
|
|
// [polonius] compile-flags: -Z polonius
|
2020-10-24 21:43:26 -05:00
|
|
|
|
2020-10-23 04:00:18 -05:00
|
|
|
trait TT {}
|
|
|
|
|
|
|
|
impl dyn TT {
|
|
|
|
fn func(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2022-04-01 12:13:25 -05:00
|
|
|
let f = |x: &dyn TT| x.func();
|
|
|
|
//[base]~^ ERROR: borrowed data escapes outside of closure
|
2021-08-03 12:42:07 -05:00
|
|
|
//[polonius]~^^ ERROR: borrowed data escapes outside of closure
|
2020-10-23 04:00:18 -05:00
|
|
|
}
|