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
module Debug
module Flow
export bp
bp=0
end
export bp
using Flow
end
If I exchange the order of the lines export bp and using Flow at the end it works fine, so I guess it has something to do with exporting the symbol bp which is made available by the using directive afterwards. The segfault appears for me with commit 4be86b2, but not the one before it.
The text was updated successfully, but these errors were encountered:
The following code causes Julia to segfault:
If I exchange the order of the lines
export bp
andusing Flow
at the end it works fine, so I guess it has something to do with exporting the symbolbp
which is made available by the using directive afterwards. The segfault appears for me with commit 4be86b2, but not the one before it.The text was updated successfully, but these errors were encountered: