aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/behaviour_SUITE_data/src/undefined_callbacks/undefined_beh_callback.erl
blob: 8223225b4bc49c7451dcc55b848626821c412799 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
%%% This is a correct callback module for the correct_behaviour.

-module(undefined_beh_callback).

-behaviour(undefined_behaviour).

-export([foo/0, bar/2]).

foo() ->
    yes.

bar({'reply', _Any}, yes) ->
    yes.