summaryrefslogtreecommitdiff
path: root/tests/exec/constructor2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/exec/constructor2.cpp')
-rw-r--r--tests/exec/constructor2.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/exec/constructor2.cpp b/tests/exec/constructor2.cpp
new file mode 100644
index 0000000..b23c02a
--- /dev/null
+++ b/tests/exec/constructor2.cpp
@@ -0,0 +1,14 @@
+#include <iostream>
+
+class A {
+public:
+ A();
+};
+
+A::A() {
+ std::cout << "hello world\n";
+}
+
+int main() {
+ A a;
+}