```julia @remote f() = nothing ``` This gives me "UndefVarError: `#f` not defined" This works fine ```julia f() = nothing @remote f() = nothing ``` so it seems like there should be an easy(ish?) fix here but I wasn't able to figure it out.