mirror of
https://github.com/reactos/CMake.git
synced 2024-12-28 06:27:28 +00:00
7 lines
63 B
C++
7 lines
63 B
C++
//causes a segfault
|
|
int main()
|
|
{
|
|
int* ptr = 0;
|
|
*ptr = 1;
|
|
}
|