You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> @chain 1 begin
first
last
end == 1
block = :(begin
#= REPL[22]:2 =#
first
#= REPL[22]:3 =#
last
end == 1)
ERROR: MethodError: no method matching ==(::Int64, ::typeof(last), ::Int64)
Closest candidates are:
This error didn't exist until #24. Adding a multi-argument version of the macro means that it picks up the ending == at the end.
I don't know if there is a way around this, but I ran into it when writing tests for DataFramesMeta's block PR here.
The text was updated successfully, but these errors were encountered:
consider
This error didn't exist until #24. Adding a multi-argument version of the macro means that it picks up the ending
==
at the end.I don't know if there is a way around this, but I ran into it when writing tests for DataFramesMeta's block PR here.
The text was updated successfully, but these errors were encountered: