Skip to content

Instantly share code, notes, and snippets.

@mvz
Created October 20, 2014 18:50
Show Gist options
  • Save mvz/3ed0f8c0cea93f87527f to your computer and use it in GitHub Desktop.
Save mvz/3ed0f8c0cea93f87527f to your computer and use it in GitHub Desktop.
JRuby binding issue
class C
def block_param &blk
p blk.call
@foo = 2
p instance_eval &blk
p blk.call
end
end
@foo = 1
c = C.new
c.block_param { @foo }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment