crasher/crasher-src.cpp

6 lines
107 B
C++
Raw Normal View History

2024-12-09 00:46:49 +00:00
int main() {
int NULL;
volatile int* a = reinterpret_cast<volatile int*>(NULL);
*a = 1;
return 0;
}