diff options
Diffstat (limited to 'bootstraptest')
-rw-r--r-- | bootstraptest/test_insns.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bootstraptest/test_insns.rb b/bootstraptest/test_insns.rb index 6de5c60999..88f36bd0c2 100644 --- a/bootstraptest/test_insns.rb +++ b/bootstraptest/test_insns.rb @@ -112,6 +112,7 @@ tests = [ [ 'newhash', %q{ x = {}; x[x] = true }, ], [ 'newhash', %q{ x = true; { x => x }[x] }, ], + [ 'newhashfromarray', %q{ { a: true }[:a] }, ], [ 'newrange', %q{ x = 1; [*(0..x)][0] == 0 }, ], [ 'newrange', %q{ x = 1; [*(0...x)][0] == 0 }, ], |