mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 11:24:36 +00:00
9 lines
259 B
Rust
9 lines
259 B
Rust
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() {}
|