mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 12:44:40 +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() {}
|