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

-export([t/1, t1/1]).
	 
t(Format) when is_list(Format) ->
   t1(Format).

t1(Format) when is_list(Format) orelse is_binary(Format) ->
   Format.