Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
22b73ba6c6bbac2b117f7e27d53ea683ede14c68
/
.
/
test
/
Sema
/
implicit-def.c
blob: 942f091d7bbe31155b128804396ec8f4d882fd7a [
file
] [
log
] [
blame
]
Reid Spencer
5f016e2
2007-07-11 17:01:13 +0000
[
diff
] [
blame
]
1
/* RUN: clang -parse-ast %s -std=c89 &&
2
* RUN: not clang -parse-ast %s -std=c99 -pedantic-errors
3
*/
4
5
int
A
()
{
6
return
X
();
7
}
8