#
# PRE: update
#
#  Form attribute references with xlats
#
update request {
	Filter-Id += 'foo'
	Filter-Id += 'bar'
	Reply-Message += 'baz'

	#
	#  @fixme - EDIT - how the heck did this ever work?
	#
	control !* ANY
}

if (!(Filter-Id[0] == 'foo')) {
	test_fail
}

# Now delete the LHS by assigning the control list to it (which is empty)
update {
	request := control
}

if (Filter-Id || Reply-Message) {
	test_fail
}

success
