mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
272 B
Rust
14 lines
272 B
Rust
//@ run-pass
|
|
// Regression test for issue #10682
|
|
// Nested `proc` usage can't use outer owned data
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
fn work(_: Box<isize>) {}
|
|
fn foo<F:FnOnce()>(_: F) {}
|
|
|
|
pub fn main() {
|
|
let a = Box::new(1);
|
|
foo(move|| { foo(move|| { work(a) }) })
|
|
}
|