|
8 | 8 | // 'Experimental'
|
9 | 9 | // @matches issue_32374/index.html '//*[@class="item-right docblock-short"]/text()' 'Docs'
|
10 | 10 |
|
11 |
| -// @has issue_32374/struct.T.html '//*[@class="stab deprecated"]' \ |
12 |
| -// '👎 Deprecated since 1.0.0: text' |
| 11 | +// @has issue_32374/struct.T.html '//*[@class="stab deprecated"]/span' '👎' |
| 12 | +// @has issue_32374/struct.T.html '//*[@class="stab deprecated"]/span' \ |
| 13 | +// 'Deprecated since 1.0.0: text' |
13 | 14 | // @hasraw - '<code>test</code> <a href="https://issue_url/32374">#32374</a>'
|
| 15 | +// @matches issue_32374/struct.T.html '//*[@class="stab unstable"]' '🔬' |
14 | 16 | // @matches issue_32374/struct.T.html '//*[@class="stab unstable"]' \
|
15 |
| -// '🔬 This is a nightly-only experimental API. \(test\s#32374\)$' |
| 17 | +// 'This is a nightly-only experimental API. \(test\s#32374\)$' |
16 | 18 | /// Docs
|
17 | 19 | #[deprecated(since = "1.0.0", note = "text")]
|
18 | 20 | #[unstable(feature = "test", issue = "32374")]
|
19 | 21 | pub struct T;
|
20 | 22 |
|
| 23 | +// @has issue_32374/struct.U.html '//*[@class="stab deprecated"]' '👎' |
21 | 24 | // @has issue_32374/struct.U.html '//*[@class="stab deprecated"]' \
|
22 |
| -// '👎 Deprecated since 1.0.0: deprecated' |
| 25 | +// 'Deprecated since 1.0.0: deprecated' |
| 26 | +// @has issue_32374/struct.U.html '//*[@class="stab unstable"]' '🔬' |
23 | 27 | // @has issue_32374/struct.U.html '//*[@class="stab unstable"]' \
|
24 |
| -// '🔬 This is a nightly-only experimental API. (test #32374)' |
| 28 | +// 'This is a nightly-only experimental API. (test #32374)' |
25 | 29 | #[deprecated(since = "1.0.0", note = "deprecated")]
|
26 | 30 | #[unstable(feature = "test", issue = "32374", reason = "unstable")]
|
27 | 31 | pub struct U;
|
0 commit comments