aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/small_tests_SUITE_data/src/list_match.erl
blob: 77de6d7dee1c2ec424e318d93818913b4ee3ee10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%%%-------------------------------------------------------------------
%%% File    : list_match.erl
%%% Author  : Tobias Lindahl <[email protected]>
%%% Description : 
%%%
%%% Created : 12 Mar 2007 by Tobias Lindahl <[email protected]>
%%%-------------------------------------------------------------------
-module(list_match).

-export([t/0]).

t() ->
  t([1,2,3,4]).

t([]) ->
  ok;
t([H|T]) when is_integer(H) ->
  t(T);
t([_|T]) ->
  t(T).