add some dependencies and test code

This commit is contained in:
2025-03-17 22:54:34 +02:00
parent 21bf4d8715
commit b0be5aec60
23 changed files with 1993 additions and 43 deletions

View File

@@ -2,6 +2,10 @@
namespace minimal_lib {
int getModified(int x) { return x + 1; }
int getNewValue(int x) {
static int value = 0;
value = value + x;
return value;
}
} // namespace minimal_lib