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

14 lines
169 B
C++

#include <cstdint>
#include <unistd.h>
namespace test {
struct MyType {
int data;
};
}
void helper_fn() {
test::MyType tmp = test::MyType{1};
sleep(tmp.data);
}