summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/cmake/src/hello_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/c++/modules/cmake/src/hello_impl.cpp')
-rw-r--r--tests/projects/c++/modules/cmake/src/hello_impl.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/projects/c++/modules/cmake/src/hello_impl.cpp b/tests/projects/c++/modules/cmake/src/hello_impl.cpp
deleted file mode 100644
index 5dd555a7a..000000000
--- a/tests/projects/c++/modules/cmake/src/hello_impl.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-module;
-#include <iostream>
-
-module hello;
-
-using namespace std;
-namespace hello {
- say::say(int data) : data_(data) {
-
- }
- void say::hello() {
- cout << "hello, say class: " << data_ << endl;
- }
-}