diff options
author | Björn Gustavsson <[email protected]> | 2015-02-20 10:17:22 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-02-20 10:17:22 +0100 |
commit | 4b5d5ad4d260d5c8b960e45aa4db445c9fd6eece (patch) | |
tree | 4c5dc9aa76b3c7ccbe01b73f1e2c70fb6f4de0f9 /lib/compiler/test/map_SUITE.erl | |
parent | 704c712e99fe78a4e4769df99325198776921f88 (diff) | |
parent | d52142f95858fc2ea461e9b2b52c5835e39886d8 (diff) | |
download | otp-4b5d5ad4d260d5c8b960e45aa4db445c9fd6eece.tar.gz otp-4b5d5ad4d260d5c8b960e45aa4db445c9fd6eece.tar.bz2 otp-4b5d5ad4d260d5c8b960e45aa4db445c9fd6eece.zip |
Merge branch 'bjorn/compiler/maps'
* bjorn/compiler/maps:
beam_validator: Tighten and simplify map validation code
beam_utils: Correct test for has_map_fields in is_pure_test/1
map_SUITE: Cover comparisons of 'nil' in v3_codegen
Diffstat (limited to 'lib/compiler/test/map_SUITE.erl')
-rw-r--r-- | lib/compiler/test/map_SUITE.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/test/map_SUITE.erl b/lib/compiler/test/map_SUITE.erl index bc5ae803c6..cfa8262701 100644 --- a/lib/compiler/test/map_SUITE.erl +++ b/lib/compiler/test/map_SUITE.erl @@ -641,6 +641,7 @@ t_build_and_match_nil(Config) when is_list(Config) -> "treat" => V2, [] => V1 }), #{ [] := V3, [] := V3 } = id(#{ [] => V1, [] => V3 }), + #{ <<1>> := V3, [] := V1 } = id(#{ [] => V1, <<1>> => V3 }), ok. t_build_and_match_structure(Config) when is_list(Config) -> |