blob: cb4a9a33afddbc120d4e7e3035c76352ee8f3073 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001// RUN: clang %s -fsyntax-only
2
3void test1(int n, int* p) { *(n ? p : (void *)(7-7)) = 1; }
4void test2(int n, int* p) { *(n ? p : (void *)0) = 1; }
5