Revision
1072
Author
eloy.de.enige@gmail.com
Date
2009-03-22 17:16:37 -0700 (Sun, 22 Mar 2009)

Log Message

Tagged an example in the block spec, which cause a seg fault,  as critical. (With a comment for now.)

Modified Paths

Diff

Modified: MacRuby/branches/experimental/spec/frozen/language/block_spec.rb (1071 => 1072)


--- MacRuby/branches/experimental/spec/frozen/language/block_spec.rb	2009-03-23 00:08:54 UTC (rev 1071)
+++ MacRuby/branches/experimental/spec/frozen/language/block_spec.rb	2009-03-23 00:16:37 UTC (rev 1072)
@@ -29,6 +29,7 @@
     a.should == [[[1, 2]]]
   end
 
+  # MR: critical
   it "yields the correct arguments in a nested block" do
     a = []
     BlockSpecs::Yield.new.yield_splat_inside_block {|a1, a2| a << [a1, a2]}