14 lines
169 B
C++
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);
|
|
}
|