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