summaryrefslogtreecommitdiff
path: root/lib/dialyzer/test/incremental_SUITE_data/m6.erl
blob: 9d24db53787acdbcddbc1d91e24031e2e279d6e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-module(m6).

-export([id/1, m/0, wrong/1]).

-ifdef(m6).
m() -> ?m6.
-else.
m() -> false.
-endif.

-spec wrong(float()) -> float().
wrong(X) when is_integer(X) -> X.

id(X) -> X.