mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
15 lines
358 B
Rust
15 lines
358 B
Rust
// originally from rustc ./tests/ui/regions/issue-78262.rs
|
|
// ICE: to get the signature of a closure, use args.as_closure().sig() not fn_sig()
|
|
#![allow(clippy::upper_case_acronyms)]
|
|
|
|
trait TT {}
|
|
|
|
impl dyn TT {
|
|
fn func(&self) {}
|
|
}
|
|
|
|
#[rustfmt::skip]
|
|
fn main() {
|
|
let f = |x: &dyn TT| x.func();
|
|
//~^ ERROR: borrowed data escapes outside of closure
|
|
}
|