blob: 70c8c6e10d14b500d264a2a668f42e6cdf5cd68b [file]
#![feature(fn_delegation)]
trait Trait {}
struct S;
impl S {
reuse Trait::*; //~ ERROR empty glob delegation is not supported
}
fn main() {}