1module 'nested_call_in_case' ['a'/2]
2    attributes []
3
4'a'/2 =
5    fun (_x,_y) ->
6        case call 'erlang':'>'
7                 (call 'erlang':'length'
8                      (_x), _y) of
9          <'true'> when 'true' ->
10              'yes'
11          <'false'> when 'true' ->
12              'no'
13          ( <_omega> when 'true' ->
14                primop 'match_fail'
15                    ('if_clause')
16            -| ['compiler_generated'] )
17        end
18end
19