Packages

Check for private API usage at compile-time

Current section

Files

Jump to
priv_check lib short.ex
Raw

lib/short.ex

defmodule Short do
defmodule Abc do
defstruct [:a]
end
def hi do
# hi hi
# abc aaa babeee
IO.puts("hi")
%Abc{a: 1}
end
def abc do
if true do
end
end
def hi2 do
# assdf
end
end