Skip to content

Instantly share code, notes, and snippets.

@lpgauth
Created March 28, 2014 13:57
Show Gist options
  • Save lpgauth/9833400 to your computer and use it in GitHub Desktop.
Save lpgauth/9833400 to your computer and use it in GitHub Desktop.
test.erl:15: variable '_Else' unsafe in 'case' (line 5)
-module(test).
-compile([export_all]).
test() ->
case true of
true ->
ok;
_Else ->
ok
end,
case true of
true ->
ok;
_Else ->
ok
end.
@lpgauth
Copy link
Author

lpgauth commented Mar 28, 2014

1> c(test).
test.erl:15: variable '_Else' unsafe in 'case' (line 5)
error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment