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

-export([s/0]).

s() ->
    self() ! n(), % no warning
    erlang:send(self(), n()), % no warning
    ok.

n() ->
    {1, 1}.