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

-export([s/1]).

-spec s(maybe_improper_list(X,Y)) -> {[X], maybe_improper_list(X,Y)}.
s(A) ->
    lists:split(2,A).