add some dependencies and test code
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user