mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-10 08:57:36 +08:00
11 lines
226 B
Elixir
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
|