Sign in
webkit
/
WebKit
/
6b7c45f751131450b1675ef5b4b89fb3a0e35aba
/
.
/
PerformanceTests
/
SixSpeed
/
tests
/
spread-literal
/
spread-literal.es6
blob: b180fb5587eee60b9badb487e56c8cb677385937 [
file
] [
log
] [
blame
]
function
fn
()
{
return
[
1
,
...
[
1
,
2
,
3
]];
}
assertEqual
(
fn
()[
3
],
3
);
test
(
fn
);