blob: 2160aea16346fd631974cc2f2983a3c95b25d7bc [file] [log] [blame]
// Make sure #1399 stays fixed
#[allow(dead_code)]
struct A {
a: Box<isize>,
}
fn foo() -> Box<dyn FnMut() -> isize + 'static> {
let k: Box<_> = Box::new(22);
let _u = A { a: k.clone() };
let result = || 22;
Box::new(result)
}
pub fn main() {
assert_eq!(foo()(), 22);
}