happy
happy copied to clipboard
the alchemist's happy path with elixir
Results
2
happy issues
Sort by
recently updated
recently updated
newest added
Given this reduced test: ``` elixir {:ok, str} when is_binary(str) = tuple when is_tuple(tuple) = get_a_string_or_whatever() ``` It gives a compile-time error of: ``` elixir ** (FunctionClauseError) no function clause...
Given this reduced test: ``` elixir IO.inspect({:ok, str} when is_binary(str) = get_a_string_or_whatever()) ``` It gives an 'illegal pattern' error at compile-time of: ``` elixir ** (CompileError) web/controllers/index_controller.ex:8: illegal pattern (stdlib)...