Sign in
webkit
/
WebKit
/
98517451c44951a553bf7eb2f40afcaffd7bcdca
/
.
/
JSTests
/
es6
/
miscellaneous_no_semicolon_needed_after_do-while.js
blob: 5a0b6ab5c541bf671a18af4f05d5a95ef18c0c24 [
file
] [
log
] [
blame
]
function
test
()
{
do
{}
while
(
false
)
return
true
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);