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