mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
266 B
Rust
14 lines
266 B
Rust
// run-pass
|
|
|
|
#![allow(dead_code)]
|
|
// Make sure #1399 stays fixed
|
|
|
|
struct A { a: Box<isize> }
|
|
|
|
pub fn main() {
|
|
fn invoke<F>(f: F) where F: FnOnce() { f(); }
|
|
let k: Box<_> = 22.into();
|
|
let _u = A {a: k.clone()};
|
|
invoke(|| println!("{}", k.clone()) )
|
|
}
|