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