Trying to figure out what a [] [] does in a macro assignment

The macro call @use_memo(() -> [], [] ) is working, but your trying to expand the @use_memo() which is not working as the macro requires two arguments. Just try

@macroexpand @use_memo(() -> [], []   )
1 Like