blob: 3296a17a0b7ef0416d637b08717b08e3203922d9 [file] [log] [blame]
// 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() {
}