summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cross/cross-file-errors/underscore.rs
blob: 76e72a93fccec014f4b86ed4e530aefffdd4ee9a (plain)
1
2
3
4
5
6
7
8
9
10
// 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 {
    () => (
        _
    )
}