As i see in documentation this must work, but i have error.
void foo(dictionary d)
{
}
void foo2()
{
foo(dictionary = { { "1", 1 }, { "2", 2 }, { "3", 3 } });
}
Output:
INFO : Compiling void foo2().
ERROR : Expected expression value.
ERROR : Instead found '{'.
ERROR : Expected expression value.
ERROR : Instead found ')'.