summaryrefslogtreecommitdiff
path: root/test/LLVMC/test_data/false.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/LLVMC/test_data/false.cpp')
-rw-r--r--test/LLVMC/test_data/false.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/LLVMC/test_data/false.cpp b/test/LLVMC/test_data/false.cpp
deleted file mode 100644
index 593fcd5805..0000000000
--- a/test/LLVMC/test_data/false.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <stdio.h>
-
-/* Make this invalid C++ */
-typedef struct {
- int i;
- char c;
-} a;
-
-static a b = { .i = 65, .c = 'r'};
-
-void test() {
- b.i = 9;
- fflush(stdout);
- printf("el");
-}
-