| Eric Christopher | e70ea8b | 2011-07-26 21:42:32 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm %s -o /dev/null |
| 2 | |||||
| 3 | typedef struct _IO_FILE FILE; | ||||
| 4 | extern FILE *stderr; | ||||
| 5 | int fprintf(FILE * restrict stream, const char * restrict format, ...); | ||||
| 6 | |||||
| 7 | void test() { | ||||
| 8 | fprintf(stderr, "testing\n"); | ||||
| 9 | } | ||||