aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/hipe_SUITE_data/trycatch_3.erl
blob: 578fa0e87e60275110848d11ee0adf5533067a0f (plain) (blame)
1
2
3
4
5
6
7
8
9
-module(trycatch_3).
-export([three/1]).

three({error,Term}) ->
    error(Term);
three({throw,Term}) ->
    throw(Term);
three({exit,Term}) ->
    exit(Term).