aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/small_SUITE_data/src/zero_tuple.erl
blob: 7c790e565803da7d3ff0885b0f82e291d07e1342 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
-module(zero_tuple).
-export([t1/0, t2/0]).

t1() ->
  {} = a(),
  ok.

t2() ->
  b = a(),
  ok.

a() -> a.