// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic --verify %s && | |
// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic-old-cast --verify %s && | |
// RUN: clang-cc -analyze -checker-cfref -analyzer-store=region --verify %s | |
void foo() { | |
int *p = (int*) 0x10000; // Should not crash here. | |
*p = 3; | |
} |