aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/57 introspection/t3.cpp
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-03-28 19:33:52 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2022-03-28 19:33:52 +0300
commit6256b277687cba68e527712c3a7d327f480ab005 (patch)
tree9e0ac18411b3cefd9b02459d725b438044efaae8 /test cases/unit/57 introspection/t3.cpp
parent479a84455f6b838e862b7b68b6edd8968dd8fe1c (diff)
downloadmeson-dircondense64.zip
meson-dircondense64.tar.gz
meson-dircondense64.tar.bz2
Condense test directory names.dircondense64
Diffstat (limited to 'test cases/unit/57 introspection/t3.cpp')
-rw-r--r--test cases/unit/57 introspection/t3.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/test cases/unit/57 introspection/t3.cpp b/test cases/unit/57 introspection/t3.cpp
deleted file mode 100644
index dd518e8..0000000
--- a/test cases/unit/57 introspection/t3.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "sharedlib/shared.hpp"
-#include "staticlib/static.h"
-
-int main(void) {
- for(int i = 0; i < 1000; add_numbers(i, 1)) {
- SharedClass cl1;
- if(cl1.getNumber() != 42) {
- return 1;
- }
- cl1.doStuff();
- if(cl1.getNumber() != 43) {
- return 2;
- }
- }
- return 0;
-}