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