blob: 7d499c611a43c35428075fd51a1bc698bb1b6cd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#![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() {}
|