blob: e09ccb80df2d7309c6bb3473619c0f3681586034 (
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".
|