blob: 3296a17a0b7ef0416d637b08717b08e3203922d9 (
plain)
1
2
3
4
5
6
7
8
9
|
// Test internal const fn feature gate.
#![feature(const_fn)]
#[rustc_const_unstable(feature="fzzzzzt")] //~ stability attributes may not be used outside
pub const fn bazinga() {}
fn main() {
}
|