mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 15:48:52 +00:00
11 lines
230 B
Rust
11 lines
230 B
Rust
//! Test for invalid MetaItem syntax in the attribute
|
|
|
|
#![crate_type = "lib"]
|
|
#![feature(rustc_attrs)]
|
|
|
|
#[rustc_on_unimplemented(
|
|
message="the message"
|
|
label="the label" //~ ERROR expected `,`, found `label`
|
|
)]
|
|
trait T {}
|