Open AGraber opened 5 years ago
The following:
static Func:FunctionArray[10]<i>; @.FunctionArray[id](variable);
Compiles as:
(Indirect_Call(_:FunctionArray[id],_:(tagof(FunctionArray[id])),variable));
Which fails due to id being a variable
id
(error) unknown symbol, or not a constant symbol (symbol "id")
The following:
Compiles as:
Which fails due to
id
being a variable