Sign in
rust
/
rust
/
1ce9c977ffcff7c3b12bfe5629a682da0e74a7a1
/
.
/
tests
/
ui
/
self
/
self-infer.rs
blob: d6f6d8bfa069e74f706703b6f5fba2bdc2aef9a0 [
file
] [
log
] [
blame
]
struct
S
;
impl
S
{
fn
f
(
self
:
_
)
{}
//~ERROR the placeholder `_` is not allowed within types on item signatures for methods
fn
g
(
self
:
&
_
)
{}
//~ERROR the placeholder `_` is not allowed within types on item signatures for methods
}
fn
main
()
{}