summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-gui/src/staged_api/lib.rs
blob: 5934593a8999b94c6e711a41d8e14b2573dd17af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(staged_api)]
#![stable(feature = "some_feature", since = "1.3.5")]

#[stable(feature = "some_feature", since = "1.3.5")]
pub struct Foo {}

impl Foo {
    #[stable(feature = "some_feature", since = "1.3.5")]
    pub fn bar() {}
    #[stable(feature = "some_other_feature", since = "1.3.6")]
    pub fn yo() {}
}