aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/small_tests_SUITE_data/src/lzip.erl
blob: 753d2939d816e3f315a8901c538a156d94d48146 (plain) (blame)
1
2
3
4
5
6
7
8
-module(lzip).
-export([test/0, test/1]).

test() ->
  lists:zip([],[]).

test(L) ->
  lists:zip(L, []).