rust/tests/ui/attributes/attrs-with-no-formal-in-generics-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
369 B
Rust
Raw Normal View History

// 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> {
2019-02-07 09:10:11 +00:00
//~^ ERROR trailing attribute after generic parameter
}
fn main() {}