aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/match_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2015-02-03 07:51:34 +0100
committerBjörn Gustavsson <[email protected]>2015-02-03 07:51:34 +0100
commitf2d3f06b0f77ea1382b6aa39fb6c73ad1d586d6a (patch)
tree824fc247e6049575a2a0324a1a985d2432d57bde /lib/compiler/test/match_SUITE.erl
parentedf6a220668d7461044918c10190b41ea7a4891d (diff)
parent94b36c7c2534f92e1d1ce768fb63d9012bb0c630 (diff)
downloadotp-f2d3f06b0f77ea1382b6aa39fb6c73ad1d586d6a.tar.gz
otp-f2d3f06b0f77ea1382b6aa39fb6c73ad1d586d6a.tar.bz2
otp-f2d3f06b0f77ea1382b6aa39fb6c73ad1d586d6a.zip
Merge branch 'bjorn/compiler/map-bugs/OTP-12451' into maint
* bjorn/compiler/map-bugs/OTP-12451: Be more careful about map patterns when evalutating element/2 Do not convert map patterns to map expressions
Diffstat (limited to 'lib/compiler/test/match_SUITE.erl')
-rw-r--r--lib/compiler/test/match_SUITE.erl7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/compiler/test/match_SUITE.erl b/lib/compiler/test/match_SUITE.erl
index e5aaf49d6f..1e778dca24 100644
--- a/lib/compiler/test/match_SUITE.erl
+++ b/lib/compiler/test/match_SUITE.erl
@@ -406,12 +406,19 @@ underscore(Config) when is_list(Config) ->
match_map(Config) when is_list(Config) ->
Map = #{key=>{x,y},ignore=>anything},
#s{map=Map,t={x,y}} = do_match_map(#s{map=Map}),
+ {a,#{k:={a,b,c}}} = do_match_map_2(#{k=>{a,b,c}}),
ok.
do_match_map(#s{map=#{key:=Val}}=S) ->
%% Would crash with a 'badarg' exception.
S#s{t=Val}.
+do_match_map_2(Map) ->
+ case {a,Map} of
+ {a,#{k:=_}}=Tuple ->
+ Tuple
+ end.
+
coverage(Config) when is_list(Config) ->
%% Cover beam_dead.
ok = coverage_1(x, a),