blob: ffab73ae68f30aac44b28d45a39e0c4d53422070 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#
# PRE: update-error
#
# It's an error to assign literal values which are not
# part of the set of enumerated values for an attribute
#
update {
Service-Type := 'hello' # ERROR
reply:Filter-Id := "filter"
}
|