blob: c18a711675876c01a46bd8206957c3477eb401c1 [file] [log] [blame]
#![feature(type_alias_impl_trait)]
fn main() {}
type Two<'a, 'b> = impl std::fmt::Debug;
fn one<'a>(t: &'a ()) -> Two<'a, 'a> { //~ ERROR non-defining opaque type use
t
}