mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
369 B
Rust
14 lines
369 B
Rust
// 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() {}
|