Files
dbgui/tmp/main.cpp
2023-06-03 01:32:24 +02:00

20 lines
239 B
C++

#include <stdint.h>
#include <unistd.h>
namespace {
struct MyType {
int data;
};
}
void helper_fn();
int main(int argc, char* argv[]) {
MyType tmp = MyType{10};
while (tmp.data != 0) {
helper_fn();
tmp.data--;
}
return 0;
}