about summary refs log tree commit diff
path: root/tests/ui/consts/gate-do-not-const-check.rs
blob: 0ebb1e7c82e2b69ccb08a6acd74166bb75888a26 (plain)
1
2
3
4
5
6
7
#[rustc_do_not_const_check]
//~^ ERROR use of an internal attribute [E0658]
//~| NOTE the `#[rustc_do_not_const_check]` attribute is an internal implementation detail that will never be stable
//~| NOTE `#[rustc_do_not_const_check]` skips const-check for this function's body
const fn foo() {}

fn main() {}