Skip to content
  • Martin Wierich's avatar
    fixing bug in module trans · 60cf071e
    Martin Wierich authored
    before
      case x of { 1->1; _ -> case C of { A -> 2 }}
    transformed to
      case x of { 1->1; _ -> neverMatchingCase }
    now it transforms to
      case x of { 1->1;}
    60cf071e