blob: 7d499c611a43c35428075fd51a1bc698bb1b6cd3 [file] [log] [blame]
#![feature(staged_api)]
#![stable(feature = "rust1", since = "1.0.0")]
#[stable(feature = "foo", since = "1.0.0")]
pub const fn foo() {}
//~^ ERROR rustc_const_stable
#[unstable(feature = "bar", issue = "none")]
pub const fn bar() {} // ok
fn main() {}