summaryrefslogtreecommitdiff
path: root/tests/exec/passing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/exec/passing.cpp')
-rw-r--r--tests/exec/passing.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/exec/passing.cpp b/tests/exec/passing.cpp
index 6354fa5..3a2fbf2 100644
--- a/tests/exec/passing.cpp
+++ b/tests/exec/passing.cpp
@@ -6,8 +6,8 @@ void incr(int &y) {
int main() {
int x = 5;
- std::cout << "x = " << x << std::endl;
+ std::cout << "x = " << x << "\n";
incr(x);
- std::cout << "x = " << x << std::endl;
+ std::cout << "x = " << x << "\n";
}