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