Skip to content
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

Crash with empty let bindings #15848

Closed
didierverna opened this issue Apr 12, 2016 · 7 comments
Closed

Crash with empty let bindings #15848

didierverna opened this issue Apr 12, 2016 · 7 comments
Assignees

Comments

@didierverna
Copy link

This works fine:

didier(s001)% julia
               _
   _       _ _(_)_     |  A fresh approach to technical computing
  (_)     | (_) (_)    |  Documentation: http://docs.julialang.org
   _ _   _| |_  __ _   |  Type "?help" for help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 0.4.5 (2016-03-18 00:58 UTC)
 _/ |\__'_|_|_|\__'_|  |  Official http://julialang.org/ release
|__/                   |  x86_64-apple-darwin13.4.0

julia> let x
       x
       end
ERROR: UndefVarError: x not defined

This doesn't:

didier(s001)% julia
               _
   _       _ _(_)_     |  A fresh approach to technical computing
  (_)     | (_) (_)    |  Documentation: http://docs.julialang.org
   _ _   _| |_  __ _   |  Type "?help" for help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 0.4.5 (2016-03-18 00:58 UTC)
 _/ |\__'_|_|_|\__'_|  |  Official http://julialang.org/ release
|__/                   |  x86_64-apple-darwin13.4.0

julia> let x
       foo() = x
       foo()
       end

signal (11): Segmentation fault: 11
jl_f_tuple at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/builtins.c:661
eval_user_input at REPL.jl:65
jlcall_eval_user_input_21170 at  (unknown line)
jl_apply at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1691
anonymous at REPL.jl:92
jl_apply at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia.h:1331
zsh: segmentation fault (core dumped)  julia
@didierverna didierverna changed the title Julia with empty let bindings Crash with empty let bindings Apr 12, 2016
@Keno
Copy link
Member

Keno commented Apr 12, 2016

Seems to be fixed on master:

julia> let x
          foo() = x
          foo()
          end
ERROR: UndefVarError: x not defined
 in eval(::Module, ::Any) at ./boot.jl:237

maybe somebody knowns which commit this was and we can slate it for backporting.

@StefanKarpinski
Copy link
Member

Seems likely to have been fixed by jb/functions, which is not backportable. I wonder if inference is incorrectly assuming that let variables are initialized.

@vtjnash
Copy link
Member

vtjnash commented Apr 12, 2016

i think this is #265. the result of calling foo() here is supposed to be a MethodError, but it incorrectly returns an answer instead

@Keno
Copy link
Member

Keno commented Apr 12, 2016

How is it supposed to be a MethodError? x is undefined, so it's an UndefVarError.

@StefanKarpinski
Copy link
Member

Regardless of what kind of error it's supposed to be, segfault is not ok.

@JeffBezanson JeffBezanson self-assigned this Apr 12, 2016
@vtjnash
Copy link
Member

vtjnash commented Apr 12, 2016

ah, sorry, i was thinking foo was global, in which case this is odd edge case for parsing such that foo would be defined, but not have any methods until the let block returns.

tkelman added a commit that referenced this issue Apr 17, 2016
fix #15848, crash with captured, never-assigned local variable
@tkelman
Copy link
Contributor

tkelman commented Apr 17, 2016

should be fixed by #15851

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants