rust/src/test/ui/stability-attribute/stability-attribute-sanity-4.rs
Esteban Küber 609ffa1a89 Reword malformed attribute input diagnostics
- Handle empty `cfg_attr` attribute
- Reword empty `derive` attribute error
- Use consistend error message: "malformed `attrname` attribute input"
- Provide suggestions when possible
- Move note/help to label/suggestion
- Use consistent wording "ill-formed" -> "malformed"
- Move diagnostic logic out of parser
2019-05-25 11:55:50 -07:00

30 lines
766 B
Rust

// Various checks that stability attributes are used correctly, per RFC 507
#![feature(staged_api)]
#![stable(feature = "rust1", since = "1.0.0")]
mod bogus_attribute_types_2 {
#[unstable] //~ ERROR malformed `unstable` attribute
fn f1() { }
#[unstable = "b"] //~ ERROR malformed `unstable` attribute
fn f2() { }
#[stable] //~ ERROR malformed `stable` attribute
fn f3() { }
#[stable = "a"] //~ ERROR malformed `stable` attribute
fn f4() { }
#[stable(feature = "a", since = "b")]
#[rustc_deprecated] //~ ERROR malformed `rustc_deprecated` attribute
fn f5() { }
#[stable(feature = "a", since = "b")]
#[rustc_deprecated = "a"] //~ ERROR malformed `rustc_deprecated` attribute
fn f6() { }
}
fn main() { }