rust/tests/ui/feature-gates/feature-gate-rustc-allow-const-fn-unstable.rs

6 lines
133 B
Rust

#![allow(unused_macros)]
#[rustc_allow_const_fn_unstable()] //~ ERROR use of an internal attribute
const fn foo() { }
fn main() {}