Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.9-beta-1, 2.4.0-rc-1
-
None
Description
The following does not work. See: http://markmail.org/message/ekm45sghpzh227ga
assert foo('x1', 'y1') == 'r1' def foo(x, y) { switch(x) { case 'x1': switch(y) { case 'y1': 'r1'; break; case 'y2': 'r2'; break; } } }