blob: a701fc4c0b74fcc61afbe6525be07411660a421e [file] [log] [blame]
//@ known-bug: #136188
//@ compile-flags: --crate-type=lib -Znext-solver
#![feature(type_alias_impl_trait)]
type Opaque = Box<impl Sized>;
fn define() -> Opaque { Box::new(()) }
impl Copy for Opaque {}