blob: d2e323af6a1a1897ee85a65354f25b0d9fbe89bd [file] [log] [blame] [edit]
//@ edition:2015..2021
use std::fmt::Debug;
fn in_adt_in_return() -> Vec<impl Debug> { panic!() }
//~^ ERROR type annotations needed
fn main() {}