aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/map_SUITE_data/src/subtract_value_flip.erl
blob: 97e6b54e3c1407891ce0da6414587b424e910708 (plain) (blame)
1
2
3
4
5
6
7
8
9
-module(subtract_value_flip).

-export([t1/1]).

t1(#{type := _Smth} = Map) ->
    case Map of
	#{type := a} -> ok;
	#{type := b} -> error
    end.