2025-07-24 17:22:54 +05:00
|
|
|
//! Regression test for https://github.com/rust-lang/rust/issues/12744
|
|
|
|
|
|
2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2014-12-07 15:22:06 +00:00
|
|
|
fn main() {
|
2019-05-28 14:47:21 -04:00
|
|
|
fn test() -> Box<dyn std::any::Any + 'static> { Box::new(1) }
|
2014-12-20 00:09:35 -08:00
|
|
|
println!("{:?}", test())
|
2014-12-07 15:22:06 +00:00
|
|
|
}
|