summaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2002-05-23-TypeNameCollision.c
blob: 25d114965d486785b2c7226c330bbc32b1740956 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null

/* Testcase for when struct tag conflicts with typedef name... grr */

typedef struct foo {
  struct foo *X;
  int Y;
} * foo;

foo F1;
struct foo *F2;

enum bar { test1, test2 };

typedef float bar;

enum bar B1;
bar B2;

OpenPOWER on IntegriCloud