Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
loop_constant_context.rs
blob: ed0782b91a6f2339625b03f9955caa868070e5c9 [
file
] [
log
] [
blame
]
// { dg-error "'loop' is not allowed in const context" "" { target *-*-* } .+1 }
const
CONST_LOOP
:
()
=
loop
{};
// { dg-error "'loop' is not allowed in const context" "" { target *-*-* } .+1 }
static
STATIC_LOOP
:
()
=
loop
{};