rust/tests/rustdoc/stability.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
718 B
Rust
Raw Normal View History

2019-01-29 02:04:05 +08:00
#![feature(staged_api)]
#![unstable(feature = "test", issue = "none")]
2019-01-29 02:04:05 +08:00
//@ has stability/index.html
//@ has - '//ul[@class="item-table"]/li[1]//a' AaStable
//@ has - '//ul[@class="item-table"]/li[2]//a' ZzStable
//@ has - '//ul[@class="item-table"]/li[3]//a' Unstable
#[stable(feature = "rust2", since = "2.2.2")]
pub struct AaStable;
2019-01-29 02:04:05 +08:00
pub struct Unstable {
//@ has stability/struct.Unstable.html \
// '//span[@class="item-info"]//div[@class="stab unstable"]' \
2019-01-29 02:04:05 +08:00
// 'This is a nightly-only experimental API'
//@ count stability/struct.Unstable.html '//span[@class="stab unstable"]' 0
2019-01-29 02:04:05 +08:00
pub foo: u32,
pub bar: u32,
}
#[stable(feature = "rust2", since = "2.2.2")]
pub struct ZzStable;