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
/
CodeGenCXX
/
static-assert.cpp
blob
ff82f6dc5490908a27a3fe582c3ec00ff3ff299a
1
// RUN: %clang_cc1 %s -emit-llvm -o - -std=c++11 -verify
2
// expected-no-diagnostics
3
4
static_assert
(
true
,
""
);
5
6
void
f
() {
7
static_assert
(
true
,
""
);
8
}