10 lines
205 B
Rust
10 lines
205 B
Rust
![]() |
//@ 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 {}
|