summaryrefslogtreecommitdiff
path: root/test/profile17.awk
blob: 51da6627e5efb7cd491fc035608339fc69ea9f12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
	}
}