aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/opaque_tests_SUITE_data/src/zoltan_kis1.erl
blob: 82bcf2edcf88845eb3af36bde106c33a0db919ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-module(zoltan_kis1).

-export([f/0, gen/0]).

-opaque id() :: string().

-spec f() -> integer().

%BIF and Unification(t_unify) issue
f() -> erlang:length(gen()).

-spec gen() -> id().

gen() -> "Dummy".