diff options
Diffstat (limited to 'tests/exec/lvalue1.cpp')
-rw-r--r-- | tests/exec/lvalue1.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/exec/lvalue1.cpp b/tests/exec/lvalue1.cpp new file mode 100644 index 0000000..adef3b5 --- /dev/null +++ b/tests/exec/lvalue1.cpp @@ -0,0 +1,9 @@ +#include <iostream> + +int main() { + int x; + int y; + int z; + x = y = z = 1; + std::cout << x << " " << y << " " << z << "\n"; +} |