summaryrefslogtreecommitdiffhomepage
path: root/64x0/cc2/regression-tests/mixed-allcpp1-hello.cpp2
diff options
context:
space:
mode:
Diffstat (limited to '64x0/cc2/regression-tests/mixed-allcpp1-hello.cpp2')
-rw-r--r--64x0/cc2/regression-tests/mixed-allcpp1-hello.cpp215
1 files changed, 0 insertions, 15 deletions
diff --git a/64x0/cc2/regression-tests/mixed-allcpp1-hello.cpp2 b/64x0/cc2/regression-tests/mixed-allcpp1-hello.cpp2
deleted file mode 100644
index d4aa9de..0000000
--- a/64x0/cc2/regression-tests/mixed-allcpp1-hello.cpp2
+++ /dev/null
@@ -1,15 +0,0 @@
-
-// Step 1: rename .cpp to .cpp2
-
-#include <iostream>
-#include <string>
-
-#pragma auto_inline(on)
-
-// Here's a sample Syntax 1 "Hello world"...
-
-auto main() -> int
-{
- auto s = std::string{"world\n"};
- std::cout << "Hello " << s;
-}