aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/behaviour_SUITE_data/src/undefined_callbacks/undefined_behaviour.erl
blob: fb3d4c5e03e1feaf29f88a0e48f11e436b3026b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
%%% This is a behaviour with undefined info about its calllbacks.

-module(undefined_behaviour).

-export([behaviour_info/1]).

behaviour_info(callbacks) ->
    [{foo, 0}, {bar, 2}];
behaviour_info(_Other) ->
    undefined.