aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/small_tests_SUITE_data/src/compare1.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dialyzer/test/small_tests_SUITE_data/src/compare1.erl')
-rw-r--r--lib/dialyzer/test/small_tests_SUITE_data/src/compare1.erl21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/dialyzer/test/small_tests_SUITE_data/src/compare1.erl b/lib/dialyzer/test/small_tests_SUITE_data/src/compare1.erl
deleted file mode 100644
index 2626d2ebea..0000000000
--- a/lib/dialyzer/test/small_tests_SUITE_data/src/compare1.erl
+++ /dev/null
@@ -1,21 +0,0 @@
-%%%-------------------------------------------------------------------
-%%% 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.