Closed
Description
Putting this in a file and include
it:
function filler()
end
function g(a,b,c)
f(a,b)
f(a,b)
f(a,(b,))
f(a,(b,))
f(a,(b,))
f(a,(b,) # :(
f(a,(b,))
f(a,(b,))
f(a,(b,))
end
gives the error message:
julia> include("test.jl")
ERROR: LoadError: syntax: missing comma or ) in argument list
in include(::ASCIIString) at ./boot.jl:233
in include_from_node1(::ASCIIString) at ./loading.jl:426
in eval(::Module, ::Any) at ./boot.jl:236
while loading /home/kristoffer/Documents/test.jl, in expression starting on line 4
Is there anyway the line info could be a bit more specific than just the line of the start of the enclosing function?