mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 18:41:39 +00:00
8 lines
138 B
Rust
8 lines
138 B
Rust
#[macro_use]
|
|
mod underscore;
|
|
|
|
fn main() {
|
|
underscore!();
|
|
//~^ ERROR `_` can only be used on the left-hand side of an assignment
|
|
}
|