aboutsummaryrefslogblamecommitdiffstats
path: root/lib/dialyzer/test/small_SUITE_data/src/collapse_lists/a.erl
blob: 7efe870b0dc1cd5fb950467c99cf04e2d744716b (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                 
-module(a).
-export([g/1]).

-export_type([a/0, t/0]).
-type a() :: integer().
-type t() :: a() | maybe_improper_list(t(), t()).

-spec g(t()) -> t().
g(X) -> X.