crasher/crasher-src.cpp

6 lines
107 B
C++
Raw Normal View History

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