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

-export([t1/0, t2/0, t3/0, test/1]).

t1() -> test(#{a=>1}).
t2() -> test(#{a=>{b}}).
t3() -> test(#{a=>{3}}).

test(#{a:={X}}) -> X+1.