aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/small_tests_SUITE_data/src/record_send_test.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dialyzer/test/small_tests_SUITE_data/src/record_send_test.erl')
-rw-r--r--lib/dialyzer/test/small_tests_SUITE_data/src/record_send_test.erl33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/dialyzer/test/small_tests_SUITE_data/src/record_send_test.erl b/lib/dialyzer/test/small_tests_SUITE_data/src/record_send_test.erl
deleted file mode 100644
index 742519e54e..0000000000
--- a/lib/dialyzer/test/small_tests_SUITE_data/src/record_send_test.erl
+++ /dev/null
@@ -1,33 +0,0 @@
-%%-------------------------------------------------------------------
-%% File : record_send_test.erl
-%% Author : Kostis Sagonas <[email protected]>
-%% Description : A test inspired by a post of Mkcael Remond to the
-%% Erlang mailing list suggesting thst Dialyzer should
-%% be reporting sends to records rather than to pids.
-%% Dialyzer v1.3.0 indeed reports one of the dicrepancies
-%% (the one with the 4-tuple) but not the one where the
-%% message is sent to a pair which is a record.
-%% This should be fixed.
-%%
-%% Created : 10 Apr 2005 by Kostis Sagonas <[email protected]>
-%%-------------------------------------------------------------------
--module(record_send_test).
-
--export([t/0]).
-
--record(rec1, {a=a, b=b, c=c}).
--record(rec2, {a}).
-
-t() ->
- t(#rec1{}).
-
-t(Rec1 = #rec1{b=B}) ->
- Rec2 = some_mod:some_function(),
- if
- is_record(Rec2, rec2) ->
- Rec2 ! hello; %% currently this one is not found
- true ->
- Rec1 ! hello_again
- end,
- B.
-