Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
delegation
/
ice-isssue-128190.rs
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
()
{}