blob: dab3bbee663cb3608abd99990b03eaf6f6e5f02e [file] [log] [blame]
#![feature(fn_delegation)]
#![allow(incomplete_features)]
fn a(&self) {}
//~^ ERROR `self` parameter is only allowed in associated functions
reuse a as b;
fn main() {}