blob: 955108a20744ba69166c230d970bac98dd8e2e13 [file] [log] [blame]
//@ 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)
}