Related to #76
A macro that contains the callback atom and it's being used within the module is not detected.
To Reproduce
-module(macros).
-callback used_callback() -> this | one | is | used | through | the | macro.
-define(CALLBACK, used_callback).
-export([using_the_callback/1]).
using_the_callback(Module) ->
Module:?CALLBACK().
hank returns:
"Callback used_callback/0 is not used anywhere in the module"
Expected Behavior
It should be considered as a used callbacks throwing no warnings.
Bug Description
Related to #76 A macro that contains the callback atom and it's being used within the module is not detected.
To Reproduce
hank returns:
Expected Behavior
It should be considered as a used callbacks throwing no warnings.