/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
library/cpp/terminate_handler/sample/segv/main.cpp
15 строк
175 B
arigachnyy
add tests for blockstore/libs to opensource nbs
08 сен 2023, 19:20
08 сен 2023, 19:20
b17aab6
Код
Авторство
О чём код?
#include "../../segv_handler.h" void Bar(int* x) { *x = 11; } void Foo(int* x) { Bar(x); } int main() { InstallSegvHandler(); Foo((int*)1); return 0; }