This commit is contained in:
T0b1
2023-06-03 01:32:24 +02:00
parent ec2eeb10f7
commit 4f0f320ac4
9 changed files with 172 additions and 11 deletions

13
tmp/sec.cpp Normal file
View File

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