https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85487
Florian Weimer <fw at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |fw at gcc dot gnu.org
--- Comment #11 from Florian Weimer <fw at gcc dot gnu.org> ---
Clang does not appear to treat this pragma as a statement. Is this also the
MSVC behavior?
int
f (int i)
{
if (i)
#pragma region
return 1;
#pragma endregion
return 0;
}
