Sign in
webkit
/
WebKit
/
74a70b4650fbd719ba3c83ed49ad2fe62a266972
/
.
/
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
);