summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsized/issue-91803.rs
blob: c74897cc4bc501a70b1ff5a33d1c009464c10fc5 (plain)
1
2
3
4
5
6
7
8
trait Foo<'a> {}

fn or<'a>(first: &'static dyn Foo<'a>) -> dyn Foo<'a> {
    //~^ ERROR return type cannot have an unboxed trait object
    return Box::new(panic!());
}

fn main() {}