aboutsummaryrefslogtreecommitdiff
path: root/tests/compiler/sloc-counter/test.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compiler/sloc-counter/test.cxx')
-rw-r--r--tests/compiler/sloc-counter/test.cxx34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/compiler/sloc-counter/test.cxx b/tests/compiler/sloc-counter/test.cxx
new file mode 100644
index 0000000..ff0f5b2
--- /dev/null
+++ b/tests/compiler/sloc-counter/test.cxx
@@ -0,0 +1,34 @@
+// 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;
+}