xref: /Universal-ctags/Units/parser-elixir.r/elixir-callbacks.d/input.ex (revision 2ab1bf5aa41604206b10465a7992374c58cddee7)
1defmodule CallbackModule do
2  use Behaviour
3  # This is the new callback syntax
4  @callback new_callback() :: integer
5
6  # This is the old (deprecated) callback syntax
7  defcallback old_callback(info :: integer) :: integer
8end
9