summaryrefslogtreecommitdiff
path: root/test/scanners/cpp/elvis.in.cpp
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2009-12-28 07:27:12 +0000
committermurphy <murphy@rubychan.de>2009-12-28 07:27:12 +0000
commit432aeb74d5a49e6f0efd1063113cef099c93aef6 (patch)
treef300ae05c2418721ea188ca1acc763cff06e71b7 /test/scanners/cpp/elvis.in.cpp
parent1982b2bf7e7bfa333838cf2f3e7613c00d2a67c3 (diff)
downloadcoderay-432aeb74d5a49e6f0efd1063113cef099c93aef6.tar.gz
Copying changes and fixes for 0.9.0rc3 from terminal-encoder branch over to trunk.
Diffstat (limited to 'test/scanners/cpp/elvis.in.cpp')
-rw-r--r--test/scanners/cpp/elvis.in.cpp27
1 files changed, 26 insertions, 1 deletions
diff --git a/test/scanners/cpp/elvis.in.cpp b/test/scanners/cpp/elvis.in.cpp
index e23f86e..9cdd574 100644
--- a/test/scanners/cpp/elvis.in.cpp
+++ b/test/scanners/cpp/elvis.in.cpp
@@ -1 +1,26 @@
-this?is+no:label
+This?is+no:label;
+
+// This is only one label:
+label: switch (TYPE(v)) {
+ case T_CLASS: case T_MODULE:
+ rb_str_append(s, rb_inspect(v));
+ break;
+ default:
+ rb_str_append(s, rb_any_to_s(v));
+ break;
+}
+// These are two labels.
+function(call);
+label2: label3: a = b + c;
+
+// Another label.
+if (1) {
+ label4: a = b + c;
+}
+
+// Not a label.
+test(
+ a?
+ b:
+ c
+) \ No newline at end of file