aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/compilation_SUITE_data
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2012-12-03 11:46:04 +0100
committerBjörn Gustavsson <[email protected]>2013-01-09 12:41:02 +0100
commitf143990aea3ed5dd62952c1ed3d0a052f011626f (patch)
tree791d773a9950dee5481b0be4cd71d78fd32700eb /lib/compiler/test/compilation_SUITE_data
parent436760217490abd3efaa29d5b593cd8f01729c0e (diff)
downloadotp-f143990aea3ed5dd62952c1ed3d0a052f011626f.tar.gz
otp-f143990aea3ed5dd62952c1ed3d0a052f011626f.tar.bz2
otp-f143990aea3ed5dd62952c1ed3d0a052f011626f.zip
compiler: Remove support for packages
Diffstat (limited to 'lib/compiler/test/compilation_SUITE_data')
-rw-r--r--lib/compiler/test/compilation_SUITE_data/bad_functional_value.erl28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/compiler/test/compilation_SUITE_data/bad_functional_value.erl b/lib/compiler/test/compilation_SUITE_data/bad_functional_value.erl
deleted file mode 100644
index 126a573e83..0000000000
--- a/lib/compiler/test/compilation_SUITE_data/bad_functional_value.erl
+++ /dev/null
@@ -1,28 +0,0 @@
-%%
-%% %CopyrightBegin%
-%%
-%% Copyright Ericsson AB 2003-2009. All Rights Reserved.
-%%
-%% The contents of this file are subject to the Erlang Public License,
-%% Version 1.1, (the "License"); you may not use this file except in
-%% compliance with the License. You should have received a copy of the
-%% Erlang Public License along with this software. If not, it can be
-%% retrieved online at http://www.erlang.org/.
-%%
-%% Software distributed under the License is distributed on an "AS IS"
-%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-%% the License for the specific language governing rights and limitations
-%% under the License.
-%%
-%% %CopyrightEnd%
-%%
--module(bad_functional_value).
-
--export([?MODULE/0,a/0]).
-
-?MODULE() ->
- ok.
-
-a() ->
- .list_to_atom("ok").
-