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

-export([test/0]).

test() ->
    false = assoc_guard(#{}),
    true  = assoc_guard(not_a_map),
    ok.

assoc_guard(#{}) -> true;
assoc_guard(Q) -> false.