aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/behaviour_SUITE_data/src/sample_behaviour_old/missing_callback.erl
blob: e6c53068395d7b1d93b8e6519758d1ba1b74fdbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
%%% This is a correct callback module for the correct_behaviour.

-module(missing_callback).

-behaviour(correct_behaviour).

-export([bar/2]).

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