aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/compilation_SUITE_data/otp_6121a.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-04-27 11:59:15 +0200
committerBjörn Gustavsson <[email protected]>2016-04-27 14:43:10 +0200
commita6b9fcfb146481657a980c96bf4bfe6c25f0f7c1 (patch)
tree521bfafa59d81ce91310821c99e621145a44db35 /lib/compiler/test/compilation_SUITE_data/otp_6121a.erl
parent723017eaddf053bd5868be54a60b8031142384b3 (diff)
downloadotp-a6b9fcfb146481657a980c96bf4bfe6c25f0f7c1.tar.gz
otp-a6b9fcfb146481657a980c96bf4bfe6c25f0f7c1.tar.bz2
otp-a6b9fcfb146481657a980c96bf4bfe6c25f0f7c1.zip
Move catch tests to trycatch_SUITE
Diffstat (limited to 'lib/compiler/test/compilation_SUITE_data/otp_6121a.erl')
-rw-r--r--lib/compiler/test/compilation_SUITE_data/otp_6121a.erl33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/compiler/test/compilation_SUITE_data/otp_6121a.erl b/lib/compiler/test/compilation_SUITE_data/otp_6121a.erl
deleted file mode 100644
index a8fc5f3bb5..0000000000
--- a/lib/compiler/test/compilation_SUITE_data/otp_6121a.erl
+++ /dev/null
@@ -1,33 +0,0 @@
-%%
-%% %CopyrightBegin%
-%%
-%% Copyright Ericsson AB 2006-2016. All Rights Reserved.
-%%
-%% Licensed under the Apache License, Version 2.0 (the "License");
-%% you may not use this file except in compliance with the License.
-%% You may obtain a copy of the License at
-%%
-%% http://www.apache.org/licenses/LICENSE-2.0
-%%
-%% Unless required by applicable law or agreed to in writing, software
-%% distributed under the License is distributed on an "AS IS" BASIS,
-%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-%% See the License for the specific language governing permissions and
-%% limitations under the License.
-%%
-%% %CopyrightEnd%
-%%
--module(otp_6121a).
--export([?MODULE/0]).
-
-%% Thanks to Martin Bjorklund.
-
-?MODULE() ->
- G = fun() -> ok end,
- try
- fun() -> ok end
- after
- fun({A, B}) -> A + B end
- end,
- ok.
-