aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/hipe_SUITE_data/trycatch_1.erl
diff options
context:
space:
mode:
Diffstat (limited to 'erts/emulator/test/hipe_SUITE_data/trycatch_1.erl')
-rw-r--r--erts/emulator/test/hipe_SUITE_data/trycatch_1.erl14
1 files changed, 14 insertions, 0 deletions
diff --git a/erts/emulator/test/hipe_SUITE_data/trycatch_1.erl b/erts/emulator/test/hipe_SUITE_data/trycatch_1.erl
new file mode 100644
index 0000000000..702b14b5b9
--- /dev/null
+++ b/erts/emulator/test/hipe_SUITE_data/trycatch_1.erl
@@ -0,0 +1,14 @@
+-module(trycatch_1).
+-export([one_try_catch/1,one_plain_catch/1]).
+
+one_try_catch(Term) ->
+ try
+ trycatch_2:two(Term)
+ catch
+ C:R ->
+ Stk = erlang:get_stacktrace(),
+ {C,R,Stk}
+ end.
+
+one_plain_catch(Term) ->
+ {catch trycatch_2:two(Term),erlang:get_stacktrace()}.