## Versions * Elixir: 1.17 * Styler: 1.0 ## Example Input ```elixir # returns :ok || other_func() with true <- some_func() do other_func() end def some_func do condition?() || :ok end ``` ## Stacktrace / Current Behaviour ```elixir # returns nil || other_func() if some_func() do other_func() end ` ``