diff options
Diffstat (limited to 'Tests/VSExternalInclude/main.cpp')
-rw-r--r-- | Tests/VSExternalInclude/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/VSExternalInclude/main.cpp b/Tests/VSExternalInclude/main.cpp new file mode 100644 index 000000000..ea1047cb6 --- /dev/null +++ b/Tests/VSExternalInclude/main.cpp @@ -0,0 +1,9 @@ + +#include "lib2.h" + +int main(int argc, char** argv) +{ + int num = add1_and_mult2(4); + + return 0; +} |