summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-gui/src/staged_api/lib.rs
blob: 0c914470e2861e4e42b904925176973d76aa7065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(staged_api)]
#![allow(internal_features)]
#![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() {}
}