aboutsummaryrefslogblamecommitdiffstats
path: root/lib/dialyzer/test/small_tests_SUITE_data/src/compare1.erl
blob: 2626d2ebeaed3955c373ffb4776d48964cba562e (plain) (tree)




















                                                                      
%%%-------------------------------------------------------------------
%%% File    : compare1.erl
%%% Author  : Tobias Lindahl <[email protected]>
%%% Description : 
%%%
%%% Created : 20 Apr 2007 by Tobias Lindahl <[email protected]>
%%%-------------------------------------------------------------------
-module(compare1).

-export([t/0]).

t() ->
  t(42).

t(X) when X > 42 ->
  error;
t(X) when X < 42 ->
  error;
t(X) when X =/= 42 ->
  error;
t(X) -> ok.