blob: 8804186ee1a6b915777f028ae86925e044c5b78b [file] [log] [blame] [edit]
#![feature(staged_api)]
#![stable(feature = "libfoo", since = "1.0.0")]
#[unstable(feature = "foo", reason = "...", issue = "none")]
pub fn foo() {}
#[stable(feature = "libfoo", since = "1.0.0")]
pub struct Foo;
impl Foo {
#[unstable(feature = "foo", reason = "...", issue = "none")]
pub fn foo(&self) {}
}