mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +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() {}
|