Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
invalid-self-argument
/
bare-fn.rs
blob: 342bdc31a7c8218f45a05c557a4206a610f3871a [
file
] [
log
] [
blame
]
fn
b
(
foo
:
u32
,
&
mut
self
)
{
}
//~^ ERROR unexpected `self` parameter in function
//~| NOTE must be the first parameter of an associated function
fn
main
()
{
}