rust/tests/ui/cross/cross-file-errors/underscore.rs
2023-01-11 09:32:08 +00:00

11 lines
209 B
Rust

// We want this file only so we can test cross-file error
// messages, but we don't want it in an external crate.
// ignore-test
#![crate_type = "lib"]
macro_rules! underscore {
() => (
_
)
}