Add include needed for MSVC.
[clang/acc.git] / test / CodeGen / 2009-05-28-const-typedef.c
blobe46e83b9478c3ad665d6a4b5be0005818c386607
1 // RUN: clang-cc -emit-llvm %s -o -
2 // PR4281
4 typedef struct {
5 int i;
6 } something;
8 typedef const something const_something;
10 something fail(void);
12 int
13 main(int argc, char *argv[])
15 const_something R = fail();