Skip to content

Case split is bad with lambda case #3702

@andrevidela

Description

@andrevidela

Steps to Reproduce

t : Bool -> Bool
t = \case x => ?h

case-split on x

Expected Behavior

t : Bool -> Bool
t = \case True => ?h_0
          False => ?h_1

Observed Behavior

t : Bool -> Bool
t = \case False => ?h_0
t = \case True => ?h_1

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions