summaryrefslogtreecommitdiffstats
path: root/tests/ui/attributes/attrs-with-no-formal-in-generics-3.rs
blob: 3cfc70b41850a07ed2836bb10bdfa04b5f51fe6c (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).

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

fn hof_lt<Q>(_: Q)
    where Q: for <#[allow(unused)] 'a, 'b, #[oops]> Fn(RefIntPair<'a,'b>) -> &'b u32
    //~^ ERROR trailing attribute after generic parameter
{}

fn main() {}