mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 15:20:38 +00:00
10 lines
187 B
Rust
10 lines
187 B
Rust
//@ run-rustfix
|
|
|
|
pub fn missing() -> () {}
|
|
//~^ ERROR missing parameters for function definition
|
|
|
|
pub fn missing2() {}
|
|
//~^ ERROR missing parameters for function definition
|
|
|
|
fn main() {}
|