blob: d73ed53c59fb3d8f66e32dbd9c2aa0f6d60a3420 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# bad (tautology) class declaration config
# authoritative is mandatory
authoritative;
# class declaration
class "tautology" {
# tautology
# note that true does not work as it is a variable reference
# and for the same reason quotes are needed (or one can use hexa)
match if 12:34 = 56:78:9a;
}
|