Sign in
webkit
/
WebKit
/
8de09782621a8d8b47ef684da5e0e163b556e859
/
.
/
PerformanceTests
/
SixSpeed
/
tests
/
bindings-compound
/
bindings-compound.es5
blob: 789d586cac5053f8840d24f054be1f8fcd9e46ef [
file
] [
log
] [
blame
]
var
b
=
2
;
assertEqual
(
fn
(),
3
);
function
fn
()
{
var
a
=
1
;
a
+=
b
;
return
a
;
}
test
(
fn
);