mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
38 lines
585 B
Rust
38 lines
585 B
Rust
//@ run-rustfix
|
|
#![allow(dead_code, unused_variables, path_statements)]
|
|
fn a() {
|
|
let x = 5;
|
|
let y = x //~ ERROR expected function
|
|
() //~ ERROR expected `;`, found `}`
|
|
}
|
|
|
|
fn b() {
|
|
let x = 5;
|
|
let y = x //~ ERROR expected function
|
|
();
|
|
}
|
|
fn c() {
|
|
let x = 5;
|
|
x //~ ERROR expected function
|
|
()
|
|
}
|
|
fn d() { // ok
|
|
let x = || ();
|
|
x
|
|
()
|
|
}
|
|
fn e() { // ok
|
|
let x = || ();
|
|
x
|
|
();
|
|
}
|
|
fn f()
|
|
{
|
|
let y = 5 //~ ERROR expected function
|
|
() //~ ERROR expected `;`, found `}`
|
|
}
|
|
fn g() {
|
|
5 //~ ERROR expected function
|
|
();
|
|
}
|
|
fn main() {}
|