summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/attrs-with-no-formal-in-generics-2.rs
blob: d1d044035260bf3fdadc7b641a42fc474f29910f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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 RefAny<'a, T>(&'a T);

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

fn main() {}