blob: 6a97f28ff552b3a76c5f4743b8d980dcddaf97b1 [file] [log] [blame]
#![allow(incomplete_features)]
#![feature(impl_trait_in_bindings)]
fn foo() {
let _ : impl Copy;
//~^ ERROR cannot resolve opaque type
}
fn main() {}