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
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
test
/
Sema
/
default.c
blob
429e63ae2a67c239a7a13bb2112fcf16c7cbdacb
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
void
f5
(
int
z
) {
4
if
(
z
)
5
default
:
// expected-error {{not in switch statement}}
6
;
7
}
8