Init. Copied over heload, made a minimal tester.

This commit is contained in:
2025-03-16 18:46:12 +02:00
commit 21bf4d8715
12 changed files with 646 additions and 0 deletions

11
test/manual/minimal_lib.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef MINIMAL_LIB_H_
#define MINIMAL_LIB_H_
namespace minimal_lib {
static int value = 5;
int getModified(int x);
}
#endif // MINIMAL_LIB_H_