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
/
odr-use-lookahead.cpp
blob
8ce3753c8cd71c43adc875ab2e4d14be65fa791b
1
// RUN: %clang_cc1 -emit-llvm-only %s
2
3
namespace
PR43080
{
4
int
f
(
int
i
) {
return sizeof
i
<
i
; }
5
}
6
7
namespace
PR42861
{
8
const unsigned long
s
=
alignof
(
int
);
9
void
foo
() {
alignas
(
s
)
int
j
; }
10
}