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

19
tmp/main.cpp Normal file
View File

@@ -0,0 +1,19 @@
#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;
}