repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
c90-func-2.c
blob
5185e35db561881fc88da5808067e200ae5d13f8
1
/* Test that we don't pedwarn about __func__ predefined identifier in
2
a system header in C90 pedantic mode. */
3
/* { dg-do compile } */
4
/* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
5
6
#include
"c90-func-2.h"
7
8
void
9
foo
(
void
)
10
{
11
const char
*
s
=
FN
;
12
}