aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/callgraph_SUITE_data/src/test_missing_functions/t1.erl
blob: 05ba9b0f93052ab6d5384bdae4f13ad50d6dc7bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%%%-------------------------------------------------------------------
%%% File    : t1.erl
%%% Author  : Tobias Lindahl <[email protected]>
%%% Description :
%%%
%%% Created : 26 Jul 2006 by Tobias Lindahl <[email protected]>
%%%-------------------------------------------------------------------
-module(t1).

-export([t1/1, t2/1]).

t1(X) ->
  t2:t1(X).

t2(X) ->
  t2:t2(X).