]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/func-outside-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / func-outside-1.c
CommitLineData
fccf8fc6
JM
1/* Test for rejection of __func__ outside a function (GNU extensions
2 are OK there). Test with no special options. */
3/* Origin: Joseph Myers <joseph@codesourcery.com> */
4/* { dg-do compile } */
3ba09659 5/* { dg-options "-fshow-column" } */
fccf8fc6 6
3ba09659 7const char *a = __func__; /* { dg-warning "17:'__func__' is not defined outside of function scope" "undef" } */
fccf8fc6
JM
8const char *b = __FUNCTION__;
9const char *c = __PRETTY_FUNCTION__;