mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-04 03:07:25 +00:00
9 lines
128 B
Rust
9 lines
128 B
Rust
// ignore-test (auxiliary, used by other tests)
|
|
#![crate_type = "lib"]
|
|
|
|
macro_rules! underscore {
|
|
() => (
|
|
_
|
|
)
|
|
}
|