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