aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/small_SUITE_data/src/spec_other_module.erl
blob: b36742b1bd48a299f57913bf28c6e8541835cf0d (plain) (blame)
1
2
3
4
5
6
7
-module(spec_other_module).

%% OTP-15562 and ERL-845. Example provided by Kostis.

-type deep_list(A) :: [A | deep_list(A)].

-spec lists:flatten(deep_list(A)) -> [A].