diff options
Diffstat (limited to 'test/FrontendC/2002-02-13-TypeVarNameCollision.c')
-rw-r--r-- | test/FrontendC/2002-02-13-TypeVarNameCollision.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/FrontendC/2002-02-13-TypeVarNameCollision.c b/test/FrontendC/2002-02-13-TypeVarNameCollision.c new file mode 100644 index 0000000..2dede68 --- /dev/null +++ b/test/FrontendC/2002-02-13-TypeVarNameCollision.c @@ -0,0 +1,16 @@ +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null + +/* This testcase causes a symbol table collision. Type names and variable + * names should be in distinct namespaces + */ + +typedef struct foo { + int X, Y; +} FOO; + +static FOO foo[100]; + +int test() { + return foo[4].Y; +} + |