1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
-module(bug).
-export([t1/0, f1/1
,t2/0, f2/1
,t3/0, f3/1
,t4/0, f4/1
,t5/0, f5/1
]).
t1() ->
V = f1(#{a=>b}),
case V of
#{a := Q} -> Q; %% Must not warn here
_ -> ok
end,
ok.
f1(M) -> %% Should get map() succ typing
#{} = M.
t2() ->
V = f2([#{a=>b}]),
case V of
[#{a := P}] -> P; %% Must not warn here
_ -> ok
end,
ok.
f2(M) -> %% Should get [map(),...] succ typing
[#{}] = M.
t3() ->
V = f3([#{a=>b},a]),
case V of
[#{a := P}, _Q] -> P; %% Must not warn here
_ -> ok
end,
ok.
f3(M) -> %% Should get [map()|a,...] succ typing
[#{},a] = M.
t4() ->
V = f4({#{a=>b},{}}),
case V of
{#{a := P},{}} -> P; %% Must not warn here
_ -> ok
end,
ok.
f4(M) -> %% Should get {map(),{}} succ typing
{#{},{}} = M.
t5() ->
V = f5(#{k=>q,a=>b}),
case V of
#{k := q, a := P} -> P; %% Must not warn here
_ -> ok
end,
ok.
f5(M) -> %% Should get #{k:=q, ...} succ typing
#{k:=q} = M.
|