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

-export([t1/1]).

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

t2(X) ->
  X + 1.