aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/erl_lint_SUITE_data/callback3.erl
blob: 97b3ecb86071a6c6799132ac131d893f298bcd59 (plain) (blame)
1
2
3
4
5
6
7
8
-module(callback3).

-export([behaviour_info/1]).

behaviour_info(callbacks) ->
    [{f1, 1}];
behaviour_info(_) ->
    undefined.