blob: 60a0cf7ce33b4f8b87988f4fab56c7cd656d65f1 [file] [log] [blame]
## This template is used for the case in which #set with a null
## is not accepted
set1
#set($abc = "123")
$abc
#set($abc = $boohoo)
$abc
#set($map = {})
#set($map.foo = "foo")
#set($map.bar = "bar")
$map.foo
$map.bar
#set($map.bar = $boohoo)
$map.foo
$map.bar