os-rust/src/test/ui/stability-attribute/stability-attribute-sanity.rs

76 lines
2.5 KiB
Rust
Raw Normal View History

// Various checks that stability attributes are used correctly, per RFC 507
#![feature(const_fn, staged_api)]
2015-11-16 19:54:28 +03:00
#![stable(feature = "rust1", since = "1.0.0")]
mod bogus_attribute_types_1 {
2018-07-23 12:22:23 +01:00
#[stable(feature = "a", since = "b", reason)] //~ ERROR unknown meta item 'reason' [E0541]
fn f1() { }
2016-06-29 17:23:51 +02:00
#[stable(feature = "a", since)] //~ ERROR incorrect meta item [E0539]
fn f2() { }
2016-06-29 17:23:51 +02:00
#[stable(feature, since = "a")] //~ ERROR incorrect meta item [E0539]
fn f3() { }
2016-06-29 17:23:51 +02:00
#[stable(feature = "a", since(b))] //~ ERROR incorrect meta item [E0539]
fn f5() { }
2016-06-29 17:23:51 +02:00
#[stable(feature(b), since = "a")] //~ ERROR incorrect meta item [E0539]
fn f6() { }
}
mod missing_feature_names {
#[unstable(issue = "none")] //~ ERROR missing 'feature' [E0546]
fn f1() { }
2018-07-23 12:22:23 +01:00
#[unstable(feature = "b")] //~ ERROR missing 'issue' [E0547]
fn f2() { }
2015-08-13 13:06:25 -07:00
2016-06-29 17:23:51 +02:00
#[stable(since = "a")] //~ ERROR missing 'feature' [E0546]
2015-08-13 13:06:25 -07:00
fn f3() { }
}
mod missing_version {
2016-06-29 17:23:51 +02:00
#[stable(feature = "a")] //~ ERROR missing 'since' [E0542]
fn f1() { }
#[stable(feature = "a", since = "b")]
2016-06-29 17:23:51 +02:00
#[rustc_deprecated(reason = "a")] //~ ERROR missing 'since' [E0542]
fn f2() { }
2019-09-26 13:24:41 +02:00
#[stable(feature = "a", since = "b")]
#[rustc_deprecated(since = "a")] //~ ERROR missing 'reason' [E0543]
fn f3() { }
}
#[unstable(feature = "b", issue = "none")]
2016-06-29 17:23:51 +02:00
#[stable(feature = "a", since = "b")] //~ ERROR multiple stability levels [E0544]
fn multiple1() { }
#[unstable(feature = "b", issue = "none")]
#[unstable(feature = "b", issue = "none")] //~ ERROR multiple stability levels [E0544]
2016-06-29 17:23:51 +02:00
fn multiple2() { }
#[stable(feature = "a", since = "b")]
2016-06-29 17:23:51 +02:00
#[stable(feature = "a", since = "b")] //~ ERROR multiple stability levels [E0544]
fn multiple3() { }
#[stable(feature = "a", since = "b")]
#[rustc_deprecated(since = "b", reason = "text")]
#[rustc_deprecated(since = "b", reason = "text")] //~ ERROR multiple deprecated attributes
#[rustc_const_unstable(feature = "c", issue = "none")]
#[rustc_const_unstable(feature = "d", issue = "none")] //~ ERROR multiple stability levels
pub const fn multiple4() { } //~ ERROR invalid stability version found
#[stable(feature = "a", since = "1.0.0")]
#[rustc_deprecated(since = "invalid", reason = "text")]
fn invalid_deprecation_version() {} //~ ERROR invalid deprecation version found
#[rustc_deprecated(since = "a", reason = "text")]
2016-06-29 17:23:51 +02:00
fn deprecated_without_unstable_or_stable() { }
//~^^ ERROR rustc_deprecated attribute must be paired with either stable or unstable attribute
fn main() { }