mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
380 B
Rust
13 lines
380 B
Rust
|
#![feature(staged_api)]
|
||
|
|
||
|
#![unstable(feature = "test", issue = "0")]
|
||
|
|
||
|
pub struct Unstable {
|
||
|
// @has stability/struct.Unstable.html \
|
||
|
// '//div[@class="stability"]//div[@class="stab unstable"]' \
|
||
|
// 'This is a nightly-only experimental API'
|
||
|
// @count stability/struct.Unstable.html '//span[@class="stab unstable"]' 0
|
||
|
pub foo: u32,
|
||
|
pub bar: u32,
|
||
|
}
|