9 lines
129 B
Rust
9 lines
129 B
Rust
//@ ignore-test (auxiliary, used by other tests)
|
|
#![crate_type = "lib"]
|
|
|
|
macro_rules! underscore {
|
|
() => (
|
|
_
|
|
)
|
|
}
|