mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 02:57:37 +00:00
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() {}
|