Skip to content

Instantly share code, notes, and snippets.

@matsu911
Created July 17, 2013 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matsu911/6020219 to your computer and use it in GitHub Desktop.
Save matsu911/6020219 to your computer and use it in GitHub Desktop.
RubyMotion 2.4のブロックに関するバグ。 block内のローカル変数が外側の同名の変数を上書きしている。
describe "Application 'block_bug'" do
it "block bug" do
x = 1
[2, 3].each{ |x| x}
x.should == 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment