summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/auxiliary/transitive_dep_three.rs
blob: 99b51625ac3ec2e041e34742173d133cbdd68290 (plain)
1
2
3
4
5
6
7
8
9
#[macro_export]
macro_rules! define_parse_error {
    () => {
        #[macro_export]
        macro_rules! parse_error {
            () => { parse error }
        }
    }
}