blob: c7a9813250db9d871bb9754eaa23bf1e8157b8bf [file] [log] [blame] [edit]
#![allow(incomplete_features)]
#![feature(fn_delegation)]
struct Trait(usize);
reuse impl Trait { self.0 }
//~^ ERROR only trait impls can be reused
fn main() {}