1 2 3 4 5 6 7 8 9
#![allow(incomplete_features)] #![feature(impl_trait_in_bindings)] fn foo() { let _ : impl Copy; //~^ ERROR cannot resolve opaque type } fn main() {}