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

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

-opaque id() :: string().

-spec f() -> char().

%%List pattern matching issue
f() -> [H|_T] = gen(), H.

-spec gen() -> id().

gen() -> "Dummy".