rakudo-debugger icon indicating copy to clipboard operation
rakudo-debugger copied to clipboard

Debugger freezes on routine wrapping

Open rubiot opened this issue 8 years ago • 0 comments

The following code runs OK, but freezes on the debugger:

use v6;
&say.wrap: sub (|c) {
  print ">>";
  nextsame;
};
say "x";

rubiot avatar Nov 17 '16 17:11 rubiot