summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/attrs-with-no-formal-in-generics-1.rs
blob: df9c8d894652b5b280d5df09b5568c270f05a273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// This test checks variations on `<#[attr] 'a, #[oops]>`, where
// `#[oops]` is left dangling (that is, it is unattached, with no
// formal binding following it).

#![feature(rustc_attrs)]

struct RefIntPair<'a, 'b>(&'a u32, &'b u32);

impl<#[rustc_dummy] 'a, 'b, #[oops]> RefIntPair<'a, 'b> {
    //~^ ERROR trailing attribute after generic parameter
}

fn main() {}