зеркало из https://github.com/microsoft/clang-1.git
8 строки
330 B
C
8 строки
330 B
C
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=basic -verify %s
|
|
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -verify %s
|
|
|
|
void foo() {
|
|
int *p = (int*) 0x10000; // Should not crash here.
|
|
*p = 3;
|
|
}
|