2016-04-22 23:26:08 -04:00
|
|
|
#![feature(staged_api)]
|
2021-06-18 00:33:42 +02:00
|
|
|
#![doc(issue_tracker_base_url = "https://issue_url/")]
|
2021-11-19 22:47:07 -08:00
|
|
|
#![unstable(feature = "test", issue = "32374")]
|
2016-04-22 23:26:08 -04:00
|
|
|
|
2021-06-24 14:30:01 +02:00
|
|
|
// @matches issue_32374/index.html '//*[@class="item-left unstable deprecated module-item"]/span[@class="stab deprecated"]' \
|
2019-01-14 10:02:27 -05:00
|
|
|
// 'Deprecated'
|
2021-06-24 14:30:01 +02:00
|
|
|
// @matches issue_32374/index.html '//*[@class="item-left unstable deprecated module-item"]/span[@class="stab unstable"]' \
|
2019-01-14 10:02:27 -05:00
|
|
|
// 'Experimental'
|
2021-06-18 00:33:42 +02:00
|
|
|
// @matches issue_32374/index.html '//*[@class="item-right docblock-short"]/text()' 'Docs'
|
2016-04-22 23:26:08 -04:00
|
|
|
|
|
|
|
// @has issue_32374/struct.T.html '//*[@class="stab deprecated"]' \
|
2020-05-08 15:27:08 +02:00
|
|
|
// '👎 Deprecated since 1.0.0: text'
|
2022-08-10 13:13:18 -07:00
|
|
|
// @hasraw - '<code>test</code> <a href="https://issue_url/32374">#32374</a>'
|
2016-11-13 15:56:23 -05:00
|
|
|
// @matches issue_32374/struct.T.html '//*[@class="stab unstable"]' \
|
2019-01-05 14:17:51 -05:00
|
|
|
// '🔬 This is a nightly-only experimental API. \(test\s#32374\)$'
|
2018-12-13 23:28:54 -05:00
|
|
|
/// Docs
|
2022-04-07 21:20:32 -04:00
|
|
|
#[deprecated(since = "1.0.0", note = "text")]
|
2016-04-22 23:26:08 -04:00
|
|
|
#[unstable(feature = "test", issue = "32374")]
|
|
|
|
pub struct T;
|
2016-11-13 15:56:23 -05:00
|
|
|
|
|
|
|
// @has issue_32374/struct.U.html '//*[@class="stab deprecated"]' \
|
2020-05-08 15:27:08 +02:00
|
|
|
// '👎 Deprecated since 1.0.0: deprecated'
|
2016-11-13 15:56:23 -05:00
|
|
|
// @has issue_32374/struct.U.html '//*[@class="stab unstable"]' \
|
2017-02-23 12:51:28 +01:00
|
|
|
// '🔬 This is a nightly-only experimental API. (test #32374)'
|
2022-04-07 21:20:32 -04:00
|
|
|
#[deprecated(since = "1.0.0", note = "deprecated")]
|
2016-11-13 15:56:23 -05:00
|
|
|
#[unstable(feature = "test", issue = "32374", reason = "unstable")]
|
|
|
|
pub struct U;
|