about summary refs log tree commit diff
path: root/src/test/run-make/issue-36710/foo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make/issue-36710/foo.cpp')
-rw-r--r--src/test/run-make/issue-36710/foo.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/run-make/issue-36710/foo.cpp b/src/test/run-make/issue-36710/foo.cpp
deleted file mode 100644
index 8f878c2c272..00000000000
--- a/src/test/run-make/issue-36710/foo.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdint.h>
-
-struct A {
-    A() { v = 1234; }
-    ~A() { v = 1; }
-    uint32_t v;
-};
-
-A a;
-
-extern "C" {
-    uint32_t get() {
-        return a.v;
-    }
-}