mirror of
https://github.com/rust-lang/rust.git
synced 2026-03-23 16:25:14 +00:00
10 lines
186 B
Rust
10 lines
186 B
Rust
// run-rustfix
|
|
|
|
pub fn missing() -> () {}
|
|
//~^ ERROR missing parameters for function definition
|
|
|
|
pub fn missing2() {}
|
|
//~^ ERROR missing parameters for function definition
|
|
|
|
fn main() {}
|