Current section

Files

Jump to
rebar3_hank priv test_files unnecessary_function_arguments warnings_B.erl
Raw

priv/test_files/unnecessary_function_arguments/warnings_B.erl

-module(warnings_B).
-export([underscore/3, not_underscored/2]).
%% _ is unused
underscore(_, Arg2, Arg3) ->
{Arg2, Arg3}.
%% Arg2 is unused and not underscored (although the linter should complain)
not_underscored(Arg1, Arg2) ->
Arg1.