mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-05 03:36:21 +00:00
9 lines
123 B
Rust
9 lines
123 B
Rust
//@ ignore-auxiliary (used by `./main.rs`)
|
|
#![crate_type = "lib"]
|
|
|
|
macro_rules! underscore {
|
|
() => (
|
|
_
|
|
)
|
|
}
|