livebook/test/support/test_modules/bad_inspect.ex

12 lines
226 B
Elixir
Raw Normal View History

defmodule Livebook.TestModules.BadInspect do
defstruct []
defimpl Inspect do
2023-02-04 01:30:41 +08:00
@dialyzer {:nowarn_function, inspect: 2}
def inspect(%Livebook.TestModules.BadInspect{}, _opts) do
:bad_return
end
end
end