Sign in
rust
/
rust
/
36ba2c7712052d731a7082d0eba5ed3d9d56c133
/
.
/
tests
/
ui
/
parser
/
self-in-function-arg.rs
blob: 6172ffe1b0347aee9440f8a84b15ea04a82c93b2 [
file
]
fn
foo
(
x
:
i32
,
self
:
i32
)
->
i32
{
self
}
//~ ERROR unexpected `self` parameter in function
fn
main
()
{}