Sign in
webkit
/
WebKit
/
0aa192ef1bb53cd65ee1ccdfb1bf23e98c2e6e65
/
.
/
PerformanceTests
/
SixSpeed
/
tests
/
bindings-compound
/
bindings-compound.es6
blob: cea478f07036fa438f8b34568dd5381666bda707 [
file
] [
log
] [
blame
]
"use strict"
;
const
b
=
2
;
function
fn
()
{
let
a
=
1
;
a
+=
b
;
return
a
;
}
assertEqual
(
fn
(),
3
);
test
(
fn
);