summaryrefslogtreecommitdiff
path: root/test/profile17.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/profile17.awk')
-rwxr-xr-xtest/profile17.awk18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/profile17.awk b/test/profile17.awk
new file mode 100755
index 00000000..51da6627
--- /dev/null
+++ b/test/profile17.awk
@@ -0,0 +1,18 @@
+BEGIN {
+ switch (q) { # Comment 1
+ case "a": # Comment 2
+ # comment 3
+ a++
+ case "b":
+ # Comment 4
+ break # Comment 5
+ default: # Comment 6
+ break # Comment 7
+ } # Comment 8
+
+ switch (b) # Comment A
+ { # Comment B
+ case "a":
+ break;
+ }
+}