mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-24 04:46:58 +00:00
10 lines
182 B
Rust
10 lines
182 B
Rust
// run-rustfix
|
|
|
|
pub fn missing -> () {}
|
|
//~^ ERROR missing parameters for function definition
|
|
|
|
pub fn missing2 {}
|
|
//~^ ERROR missing parameters for function definition
|
|
|
|
fn main() {}
|