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

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

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

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

id(X) -> m5:id(X), m6:id(X).