summaryrefslogtreecommitdiff
path: root/erts/emulator/test/hipe_SUITE_data/trycatch_2.erl
diff options
context:
space:
mode:
Diffstat (limited to 'erts/emulator/test/hipe_SUITE_data/trycatch_2.erl')
-rw-r--r--erts/emulator/test/hipe_SUITE_data/trycatch_2.erl10
1 files changed, 0 insertions, 10 deletions
diff --git a/erts/emulator/test/hipe_SUITE_data/trycatch_2.erl b/erts/emulator/test/hipe_SUITE_data/trycatch_2.erl
deleted file mode 100644
index ffac420197..0000000000
--- a/erts/emulator/test/hipe_SUITE_data/trycatch_2.erl
+++ /dev/null
@@ -1,10 +0,0 @@
--module(trycatch_2).
--export([two/1]).
-
-two(Term) ->
- Res = trycatch_3:three(Term),
- foo(),
- Res.
-
-foo() ->
- ok.