2015-01-22 20:33:46 +00:00
|
|
|
// Various checks that stability attributes are used correctly, per RFC 507
|
|
|
|
|
2021-05-07 16:56:16 +00:00
|
|
|
#![feature(staged_api)]
|
2015-01-22 20:33:46 +00:00
|
|
|
|
2015-11-16 16:54:28 +00:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
|
2015-01-22 20:33:46 +00:00
|
|
|
mod bogus_attribute_types_1 {
|
2023-10-16 20:11:26 +00:00
|
|
|
#[stable(feature = "a", since = "4.4.4", reason)] //~ ERROR unknown meta item 'reason' [E0541]
|
2015-01-22 20:33:46 +00:00
|
|
|
fn f1() { }
|
|
|
|
|
2016-06-29 15:23:51 +00:00
|
|
|
#[stable(feature = "a", since)] //~ ERROR incorrect meta item [E0539]
|
2015-01-22 20:33:46 +00:00
|
|
|
fn f2() { }
|
|
|
|
|
2023-10-16 20:11:26 +00:00
|
|
|
#[stable(feature, since = "3.3.3")] //~ ERROR incorrect meta item [E0539]
|
2015-01-22 20:33:46 +00:00
|
|
|
fn f3() { }
|
|
|
|
|
2016-06-29 15:23:51 +00:00
|
|
|
#[stable(feature = "a", since(b))] //~ ERROR incorrect meta item [E0539]
|
2015-01-22 20:33:46 +00:00
|
|
|
fn f5() { }
|
|
|
|
|
2023-10-16 20:11:26 +00:00
|
|
|
#[stable(feature(b), since = "3.3.3")] //~ ERROR incorrect meta item [E0539]
|
2015-01-22 20:33:46 +00:00
|
|
|
fn f6() { }
|
|
|
|
}
|
|
|
|
|
|
|
|
mod missing_feature_names {
|
2019-12-21 11:16:18 +00:00
|
|
|
#[unstable(issue = "none")] //~ ERROR missing 'feature' [E0546]
|
2015-01-22 20:33:46 +00:00
|
|
|
fn f1() { }
|
|
|
|
|
2018-07-23 11:22:23 +00:00
|
|
|
#[unstable(feature = "b")] //~ ERROR missing 'issue' [E0547]
|
2015-10-13 03:01:31 +00:00
|
|
|
fn f2() { }
|
2015-08-13 20:06:25 +00:00
|
|
|
|
2023-10-16 20:11:26 +00:00
|
|
|
#[stable(since = "3.3.3")] //~ ERROR missing 'feature' [E0546]
|
2015-08-13 20:06:25 +00:00
|
|
|
fn f3() { }
|
2015-01-22 20:33:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mod missing_version {
|
2016-06-29 15:23:51 +00:00
|
|
|
#[stable(feature = "a")] //~ ERROR missing 'since' [E0542]
|
2015-01-22 20:33:46 +00:00
|
|
|
fn f1() { }
|
|
|
|
|
2023-10-16 20:11:26 +00:00
|
|
|
#[stable(feature = "a", since = "4.4.4")]
|
2022-03-05 02:59:18 +00:00
|
|
|
#[deprecated(note = "a")] //~ ERROR missing 'since' [E0542]
|
2015-01-22 20:33:46 +00:00
|
|
|
fn f2() { }
|
2019-09-26 11:24:41 +00:00
|
|
|
|
2023-10-16 20:11:26 +00:00
|
|
|
#[stable(feature = "a", since = "4.4.4")]
|
2023-10-30 05:25:13 +00:00
|
|
|
#[deprecated(since = "5.5.5")] //~ ERROR missing 'note' [E0543]
|
2019-09-26 11:24:41 +00:00
|
|
|
fn f3() { }
|
2015-01-22 20:33:46 +00:00
|
|
|
}
|
|
|
|
|
2019-12-21 11:16:18 +00:00
|
|
|
#[unstable(feature = "b", issue = "none")]
|
2023-10-16 20:11:26 +00:00
|
|
|
#[stable(feature = "a", since = "4.4.4")] //~ ERROR multiple stability levels [E0544]
|
2016-06-29 15:23:51 +00:00
|
|
|
fn multiple1() { }
|
2015-01-22 20:33:46 +00:00
|
|
|
|
2019-12-21 11:16:18 +00:00
|
|
|
#[unstable(feature = "b", issue = "none")]
|
|
|
|
#[unstable(feature = "b", issue = "none")] //~ ERROR multiple stability levels [E0544]
|
2016-06-29 15:23:51 +00:00
|
|
|
fn multiple2() { }
|
2015-01-22 20:33:46 +00:00
|
|
|
|
2023-10-16 20:11:26 +00:00
|
|
|
#[stable(feature = "a", since = "4.4.4")]
|
|
|
|
#[stable(feature = "a", since = "4.4.4")] //~ ERROR multiple stability levels [E0544]
|
2016-06-29 15:23:51 +00:00
|
|
|
fn multiple3() { }
|
2015-01-22 20:33:46 +00:00
|
|
|
|
2023-10-16 20:11:26 +00:00
|
|
|
#[stable(feature = "e", since = "b")] //~ ERROR 'since' must be a Rust version number, such as "1.31.0"
|
2023-10-30 05:25:13 +00:00
|
|
|
#[deprecated(since = "5.5.5", note = "text")]
|
|
|
|
#[deprecated(since = "5.5.5", note = "text")] //~ ERROR multiple `deprecated` attributes
|
2019-12-21 11:16:18 +00:00
|
|
|
#[rustc_const_unstable(feature = "c", issue = "none")]
|
|
|
|
#[rustc_const_unstable(feature = "d", issue = "none")] //~ ERROR multiple stability levels
|
2023-10-24 06:11:53 +00:00
|
|
|
pub const fn multiple4() { }
|
2020-12-09 23:26:42 +00:00
|
|
|
|
2023-10-26 17:14:29 +00:00
|
|
|
#[stable(feature = "a", since = "1.0.0")] //~ ERROR feature `a` is declared stable since 1.0.0
|
|
|
|
#[deprecated(since = "invalid", note = "text")] //~ ERROR 'since' must be a Rust version number, such as "1.31.0"
|
2021-02-11 05:35:27 +00:00
|
|
|
fn invalid_deprecation_version() {}
|
2015-01-22 20:33:46 +00:00
|
|
|
|
2023-10-30 05:25:13 +00:00
|
|
|
#[deprecated(since = "5.5.5", note = "text")]
|
2016-06-29 15:23:51 +00:00
|
|
|
fn deprecated_without_unstable_or_stable() { }
|
2022-03-05 02:59:18 +00:00
|
|
|
//~^^ ERROR deprecated attribute must be paired with either stable or unstable attribute
|
2015-01-22 20:33:46 +00:00
|
|
|
|
|
|
|
fn main() { }
|