// Make sure we try rendering stuff to string if not found as regular object
String templates =
"foo(m,k) ::= \"<m.(k)>\""+newline
;
writeFile(tmpdir, "test.stg", templates);
STGroup group = new STGroupFile(tmpdir+"/"+"test.stg");
ST st = group.getInstanceOf("foo");
Map<HashableUser,String> m = new HashMap<HashableUser,String>();
m.put(new HashableUser(99,"parrt"), "first");
m.put(new HashableUser(172036,"tombu"), "second");
m.put(new HashableUser(391,"sriram"), "third");
st.add("m", m);