summaryrefslogtreecommitdiff
path: root/libcutl/tests/compiler/sloc-counter/test.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libcutl/tests/compiler/sloc-counter/test.cxx')
-rw-r--r--libcutl/tests/compiler/sloc-counter/test.cxx34
1 files changed, 0 insertions, 34 deletions
diff --git a/libcutl/tests/compiler/sloc-counter/test.cxx b/libcutl/tests/compiler/sloc-counter/test.cxx
deleted file mode 100644
index ff0f5b2..0000000
--- a/libcutl/tests/compiler/sloc-counter/test.cxx
+++ /dev/null
@@ -1,34 +0,0 @@
-// C++ comment
- // C++ comment
-
-/* C comment */
-
-/* Multiline
- C
- Comment
-
-
-*/
-
-#include <iostream>
-
-char str[] = "multi\
-line\
-string\
-literal";
-
-using namespace std;
-
-
-int main(
- int argc /*count*/,
- char* argv[] /*array*/)
-{
- /* comment start */ int x = 0;
- char* s =
- /* comment start */"foo";
- int y = 2
- /* tricky stuff *//
- 2;
- cerr << "Hello, \"world!" << '\'' << endl;
-}