repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Preprocessor
/
expr_comma.c
blob
538727d12bf34d721ee71e5fc886c2213adb2928
1
// Comma is not allowed in C89
2
// RUN: not %clang_cc1 -E %s -std=c89 -pedantic-errors
3
4
// Comma is allowed if unevaluated in C99
5
// RUN: %clang_cc1 -E %s -std=c99 -pedantic-errors
6
7
// PR2279
8
9
#if 0? 1,2:3
10
#endif