blob: 6609d4eb5a2740ecadf2966e136b758c136adbf7 [file] [log] [blame]
#![feature(type_alias_impl_trait)]
type T = impl Copy;
//~^ ERROR cannot resolve opaque type
static STATIC: T = None::<&'static T>;
fn main() {}