aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/i-c-e1.c
blob: cb4a9a33afddbc120d4e7e3035c76352ee8f3073 (plain)
1
2
3
4
5
// 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; }