aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/small_SUITE_data/src/bif1/bif1.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2015-09-24 13:43:32 +0200
committerHans Bolinder <[email protected]>2015-10-30 12:37:20 +0100
commit5066ac923c1dbaa90d63e39b52b60f883284a8ad (patch)
tree952d9373d2418345244e60bd33353bf3d99205fc /lib/dialyzer/test/small_SUITE_data/src/bif1/bif1.erl
parent95197d3dd5561908a9fe1081ee9908174fd79517 (diff)
downloadotp-5066ac923c1dbaa90d63e39b52b60f883284a8ad.tar.gz
otp-5066ac923c1dbaa90d63e39b52b60f883284a8ad.tar.bz2
otp-5066ac923c1dbaa90d63e39b52b60f883284a8ad.zip
hipe/dialyzer: Remove functions from erl_bif_types
Diffstat (limited to 'lib/dialyzer/test/small_SUITE_data/src/bif1/bif1.erl')
-rw-r--r--lib/dialyzer/test/small_SUITE_data/src/bif1/bif1.erl16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/dialyzer/test/small_SUITE_data/src/bif1/bif1.erl b/lib/dialyzer/test/small_SUITE_data/src/bif1/bif1.erl
new file mode 100644
index 0000000000..bc746538d3
--- /dev/null
+++ b/lib/dialyzer/test/small_SUITE_data/src/bif1/bif1.erl
@@ -0,0 +1,16 @@
+-module(bif1).
+
+%% Other set of warnings due to removed of functions from
+%% erl_bif_types.
+
+-export([ets_rename/0, string_chars/0]).
+
+ets_rename() ->
+ A = ets:new(fipp, []),
+ true = not is_atom(A),
+ ets:rename(A, fopp). % No warning
+
+string_chars() ->
+ L2 = bif1_adt:opaque_string(),
+ S = $A,
+ string:chars(S, 10, L2). % Warning