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-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
Parser
/
sizeof-missing-parens.c
blob
8f7f728354b60edb6f2a4328a566abb77d9e2846
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
void
Foo
(
int
);
4
5
#define Bar(x) Foo(x)
6
7
void
Baz
(
void
) {
8
Foo
(
sizeof
int
);
// expected-error {{expected parentheses around type name in sizeof expression}}
9
Bar
(
sizeof
int
);
// expected-error {{expected parentheses around type name in sizeof expression}}
10
}