mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
7 lines
66 B
C++
7 lines
66 B
C++
int main() {
|
|
int * i = nullptr;
|
|
*i = 42;
|
|
|
|
return 0;
|
|
}
|