blob: 3f1314c47da62757289757d00ebdec00830ca050 [file] [log] [blame] [edit]
#![allow(incomplete_features)]
#![feature(fn_delegation)]
mod empty_glob {
trait T {}
struct S;
reuse impl T for S { self.0 }
//~^ ERROR empty glob delegation is not supported
}
fn main() {}