aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/map_SUITE_data/src/bug.erl
blob: 9e152bf46101d9154a0e2998f8ef730252818cd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-module(bug).

-export([t1/0, f1/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.