/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
library/cpp/terminate_handler/sample/pure-virtual/main.cpp
21 строка
225 B
arigachnyy
add tests for blockstore/libs to opensource nbs
08 сен 2023, 19:20
08 сен 2023, 19:20
b17aab6
Код
Авторство
О чём код?
struct TFoo { TFoo() { Baz(); } void Baz() { Bar(); } virtual void Bar() = 0; }; struct TQux: public TFoo { void Bar() override { } }; int main() { TQux(); return 0; }