diff options
author | Hans Bolinder <[email protected]> | 2016-11-16 15:06:17 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-11-22 10:29:04 +0100 |
commit | 773948083b57ad59eb90b5668e72175d79acbe1f (patch) | |
tree | 36683a8f496a556801bbba3f0fa121a71777350d /lib/dialyzer/test/map_SUITE_data/results | |
parent | a202c2e0fa1f7810fb19c5a051369ce8b308ebc1 (diff) | |
download | otp-773948083b57ad59eb90b5668e72175d79acbe1f.tar.gz otp-773948083b57ad59eb90b5668e72175d79acbe1f.tar.bz2 otp-773948083b57ad59eb90b5668e72175d79acbe1f.zip |
dialyzer: Improve a warning message
Messages regarding guards with orelse/andalso could look
like "Clause guard cannot succeed. The variable A was matched
against the type any()". Now they look like as if or/and is
used: "Guard test is_integer(A::atom()) can never succeed".
Diffstat (limited to 'lib/dialyzer/test/map_SUITE_data/results')
-rw-r--r-- | lib/dialyzer/test/map_SUITE_data/results/map_in_guard2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dialyzer/test/map_SUITE_data/results/map_in_guard2 b/lib/dialyzer/test/map_SUITE_data/results/map_in_guard2 index f6fb98a863..46e2e8d36c 100644 --- a/lib/dialyzer/test/map_SUITE_data/results/map_in_guard2 +++ b/lib/dialyzer/test/map_SUITE_data/results/map_in_guard2 @@ -2,11 +2,11 @@ map_in_guard2.erl:10: The call map_in_guard2:assoc_guard_clause('not_a_map') will never return since it differs in the 1st argument from the success typing arguments: (map()) map_in_guard2.erl:12: The pattern 'true' can never match the type 'false' map_in_guard2.erl:14: The call map_in_guard2:exact_guard_clause(#{}) will never return since it differs in the 1st argument from the success typing arguments: (#{'a':=_, _=>_}) -map_in_guard2.erl:17: Clause guard cannot succeed. The variable M was matched against the type 'not_a_map' +map_in_guard2.erl:17: Guard test is_map(M::'not_a_map') can never succeed map_in_guard2.erl:20: Function assoc_update/1 has no local return map_in_guard2.erl:20: Guard test is_map(M::'not_a_map') can never succeed -map_in_guard2.erl:22: Clause guard cannot succeed. The variable M was matched against the type 'not_a_map' map_in_guard2.erl:22: Function assoc_guard_clause/1 has no local return +map_in_guard2.erl:22: Guard test is_map(M::'not_a_map') can never succeed map_in_guard2.erl:24: Clause guard cannot succeed. The variable M was matched against the type #{} map_in_guard2.erl:27: Clause guard cannot succeed. The variable M was matched against the type #{} map_in_guard2.erl:27: Function exact_guard_clause/1 has no local return |