blob: b3c667103555a6e1382ee3976f5783f2aadb5b53 [file] [log] [blame]
#![feature(marker_trait_attr)]
#[marker]
trait A {}
impl<'a> A for (&'static (), &'a ()) {} //~ ERROR type annotations needed
impl<'a> A for (&'a (), &'static ()) {} //~ ERROR type annotations needed
fn main() {}