diff --git a/S02-names/strict.t b/S02-names/strict.t index 2029812f9c..f084d7ec19 100644 --- a/S02-names/strict.t +++ b/S02-names/strict.t @@ -33,11 +33,12 @@ is $Foo::foo, 42, 'lax declared variable is package scoped'; # RT #125398 subtest '`no strict` does not cause autovivification container issues' => { - plan 3; + plan 4; no strict; %h = 42; lives-ok { temp %h = 8 }, '`temp` on Hash key'; lives-ok { let %h = 9 }, '`let` on Hash key'; + lives-ok { %h }, 'postcircumfix {} on Hash key'; # RT #125183 isa-ok %h, Any, 'non-existent keys are `Any`'; }