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
/
CodeGen
/
2002-02-13-TypeVarNameCollision.c
blob
560b1d8566b4dc5ac1096b32803aea4a85eae1f3
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
/* This testcase causes a symbol table collision. Type names and variable
4
* names should be in distinct namespaces
5
*/
6
7
typedef
struct
foo
{
8
int
X
,
Y
;
9
}
FOO
;
10
11
static
FOO foo
[
100
];
12
13
int
test
(
void
) {
14
return
foo
[
4
].
Y
;
15
}
16