rust/tests/ui/on-unimplemented/expected-comma-found-token.rs

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 {}