Sign in
rust
/
rust
/
9ebe418dc6c3aaca3f9fa59da0b508b41bc095a2
/
.
/
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
()
{}