livebook/test/support/test_modules/bad_inspect.ex
2023-02-03 18:30:41 +01:00

11 lines
226 B
Elixir

defmodule Livebook.TestModules.BadInspect do
defstruct []
defimpl Inspect do
@dialyzer {:nowarn_function, inspect: 2}
def inspect(%Livebook.TestModules.BadInspect{}, _opts) do
:bad_return
end
end
end