examples/crash.rb in
backtracer-0.1.0
vs examples/crash.rb in
backtracer-0.2.0
- old
+ new
@@ -1,10 +1,11 @@
def go2(a, b) raise end
-def go(a);
- go2(a, 55);
+def go(a)
+ b = 3
+ go2(a, 55)
end go '3'