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

-export([t/0]).

t() ->
  comp(3.14, foo).

comp(X, Y) -> X =:= Y.