mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 09:49:45 +00:00
10 lines
146 B
Rust
10 lines
146 B
Rust
struct S;
|
|
|
|
impl S {
|
|
fn f(*, a: u8) -> u8 {}
|
|
//~^ ERROR expected parameter name, found `*`
|
|
//~| ERROR mismatched types
|
|
}
|
|
|
|
fn main() {}
|