diff options
author | Stavros Aronis <[email protected]> | 2011-03-08 15:28:09 +0200 |
---|---|---|
committer | Niclas Axelsson <[email protected]> | 2011-03-11 12:03:53 +0100 |
commit | f01ef637c938cf3cf295eb3ae1d579516723ee80 (patch) | |
tree | ff7eb50375461f33d638630a0c41de4d9e02efde /lib/dialyzer/src/dialyzer.erl | |
parent | 8342fcf5395133a19d647f2ace606af9b7fc1732 (diff) | |
download | otp-f01ef637c938cf3cf295eb3ae1d579516723ee80.tar.gz otp-f01ef637c938cf3cf295eb3ae1d579516723ee80.tar.bz2 otp-f01ef637c938cf3cf295eb3ae1d579516723ee80.zip |
More descriptive warning when a tuple pattern matches a typed record
Diffstat (limited to 'lib/dialyzer/src/dialyzer.erl')
-rw-r--r-- | lib/dialyzer/src/dialyzer.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/dialyzer/src/dialyzer.erl b/lib/dialyzer/src/dialyzer.erl index 683b518831..5014a4244c 100644 --- a/lib/dialyzer/src/dialyzer.erl +++ b/lib/dialyzer/src/dialyzer.erl @@ -368,6 +368,9 @@ message_to_string({record_constr, [Name, Field, Type]}) -> message_to_string({record_matching, [String, Name]}) -> io_lib:format("The ~s violates the" " declared type for #~w{}\n", [String, Name]); +message_to_string({record_match, [Pat, Type]}) -> + io_lib:format("Matching of ~s tagged with a record name violates the declared" + " type of ~s\n", [Pat, Type]); message_to_string({pattern_match, [Pat, Type]}) -> io_lib:format("The ~s can never match the type ~s\n", [Pat, Type]); message_to_string({pattern_match_cov, [Pat, Type]}) -> |