mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-02 23:48:36 +00:00
When `sized_hierarchy` is enabled, rustc should print `MetaSized` or `PointeeSized` instead of `?Sized` in opaques.
14 lines
284 B
Rust
14 lines
284 B
Rust
//@ compile-flags: --crate-type=lib
|
|
|
|
pub trait Tr {}
|
|
impl Tr for u32 {}
|
|
|
|
pub fn foo() -> Box<impl Tr + ?Sized> {
|
|
if true {
|
|
let x = foo();
|
|
let y: Box<dyn Tr> = x;
|
|
//~^ ERROR: the size for values of type `impl Tr + ?Sized` cannot be known
|
|
}
|
|
Box::new(1u32)
|
|
}
|