summary refs log tree commit diff
path: root/src/test/ui/span/macro-ty-params.rs
blob: b077d590915cb04932847f11f934fad105f84cad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
macro_rules! m {
    ($p1: path) => {
        #[derive($p1)] struct U;
    }
}

macro_rules! foo { () => () }

fn main() {
    foo::<T>!(); //~ ERROR generic arguments in macro path
    foo::<>!(); //~ ERROR generic arguments in macro path
    m!(Default<>); //~ ERROR generic arguments in macro path
    //~^ ERROR unexpected generic arguments in path
}