blob: eff431f4665f97c68dbce615c0f77ed093de259c [file] [log] [blame]
//@ edition: 2015
#![allow(bare_trait_objects)]
fn main() {
let _: &Copy + 'static; //~ ERROR expected a path
//~^ ERROR is not dyn compatible
let _: &'static Copy + 'static; //~ ERROR expected a path
//~^ ERROR is not dyn compatible
}