mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
334 B
Rust
16 lines
334 B
Rust
// revisions: base polonius
|
|
// ignore-compare-mode-polonius
|
|
// [polonius] compile-flags: -Z polonius
|
|
|
|
trait TT {}
|
|
|
|
impl dyn TT {
|
|
fn func(&self) {}
|
|
}
|
|
|
|
fn main() {
|
|
let f = |x: &dyn TT| x.func();
|
|
//[base]~^ ERROR: borrowed data escapes outside of closure
|
|
//[polonius]~^^ ERROR: borrowed data escapes outside of closure
|
|
}
|