class MyClass
{
function doOnce()
{
System.println("test");
var a = method(:ontTest);
a.invoke();
}
function onTest()
{
System.println("passed");
}
}
results in
test
Failed invoking <symbol>
Invalid Value
@PC = 0x10000068
@PC = 0x10000068
@PC = 0x10000029
Invalid Value
Invalid Value
If I try
var a = method(:ontTest);
//System.println(a instanceof Method);
I get the same error.