blob: ed0782b91a6f2339625b03f9955caa868070e5c9 (
plain)
1
2
3
4
5
|
// { 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{};
|