-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unreachable reached in DataFrames.jl #31133
Comments
If |
Crashes in julia 0.7. Works in julia 0.6. |
Any chance this happened to be fixed by #31129 today? |
Reduced to: function a()
try catch end
if try b catch end
c = try 0 catch end
end
c
end
a()
Still crashes on freshly-built |
duplicate of #29152. We encounter |
I can't reproduce on the latest master, should this be closed? |
On 1.4.0 (2020-03-21) this seems to be fixed. |
The source of the problem is JuliaData/DataFrames.jl#1730.
Here is a MWE:
The problem seems with the use of
m
instd
. If we writetry std(col) catch end
not to usem
the problem stops to be present.Strangely removing other
if
s also kills the problem. Note that the part of the code that causes the problem is not even executed as we pass[:min]
as the second kewyord argument.@JeffBezanson I know that there are many "Unreachable reached" issues, but I could not find one that is exactly the same (but maybe it is a duplicate).
The text was updated successfully, but these errors were encountered: