summaryrefslogtreecommitdiffstats
path: root/src/tests/keywords/case-list
blob: e4a0290679949e7241800b6637450d6fb318dc52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
switch &User-Name {
	case "bob" {
		update reply {
			Filter-Id := "filter"
		}
	}

	case &reply: {	# ERROR
		update reply {
			Filter-Id := "doug"
		}
	}

	case {
		update reply {
			Filter-Id := "default"
		}
	}
}