Hello,
With the following expression:
(#"asList" 'Arrays "test")
I get the error:
Java exception 'SchemeException: java.lang.IllegalArgumentException: argument type mismatch
ARGUMENT MISMATCH for method
public static java.util.List java.util.Arrays.asList(java.lang.Object[])
called with ("test")'.
[Condition of type JAVA-EXCEPTION]
But "test" is of java.lang.String, which is a subclass of java.lang.Object, so I'm not sure what the mismatch is.
Any help appreciated.
Patrice