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