blob: cb4a9a33afddbc120d4e7e3035c76352ee8f3073 [file] [log] [blame]
// RUN: clang %s -fsyntax-only
void test1(int n, int* p) { *(n ? p : (void *)(7-7)) = 1; }
void test2(int n, int* p) { *(n ? p : (void *)0) = 1; }