diff options
author | Björn-Egil Dahlberg <[email protected]> | 2014-03-25 16:07:39 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-03-25 16:07:39 +0100 |
commit | df6c03de9f692489d757ae1437b8fb2dc6200c6f (patch) | |
tree | 5b25382ca7582df741e3171bf0cde476d9a22267 /lib/compiler/src/v3_life.erl | |
parent | b045e161da383cdba28a3c0cc184a900160e565c (diff) | |
download | otp-df6c03de9f692489d757ae1437b8fb2dc6200c6f.tar.gz otp-df6c03de9f692489d757ae1437b8fb2dc6200c6f.tar.bz2 otp-df6c03de9f692489d757ae1437b8fb2dc6200c6f.zip |
compiler: map_pair cannot be a type clause in v3_life
Map pairs are encapsulated in a map.
Diffstat (limited to 'lib/compiler/src/v3_life.erl')
-rw-r--r-- | lib/compiler/src/v3_life.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compiler/src/v3_life.erl b/lib/compiler/src/v3_life.erl index c4f54a7970..cd4b5fd674 100644 --- a/lib/compiler/src/v3_life.erl +++ b/lib/compiler/src/v3_life.erl @@ -324,8 +324,7 @@ type(k_binary) -> binary; type(k_bin_seg) -> bin_seg; type(k_bin_int) -> bin_int; type(k_bin_end) -> bin_end; -type(k_map) -> map; -type(k_map_pair) -> map_pair. +type(k_map) -> map. %% variable(Klit) -> Lit. %% var_list([Klit]) -> [Lit]. |