10 lines
171 B
Rust
10 lines
171 B
Rust
|
|
#![feature(fn_delegation)]
|
||
|
|
#![allow(incomplete_features)]
|
||
|
|
|
||
|
|
fn a(&self) {}
|
||
|
|
//~^ ERROR `self` parameter is only allowed in associated functions
|
||
|
|
|
||
|
|
reuse a as b;
|
||
|
|
|
||
|
|
fn main() {}
|