mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-16 21:29:46 +00:00
11 lines
236 B
Plaintext
11 lines
236 B
Plaintext
// run-rustfix
|
|
// Test that we do some basic error correction in the tokeniser and apply suggestions.
|
|
|
|
fn setsuna(_: ()) {}
|
|
|
|
fn kazusa() {}
|
|
|
|
fn main() {
|
|
setsuna(kazusa()); //~ ERROR: expected one of
|
|
} //~ ERROR: expected expression
|