Sign in
webkit
/
WebKit
/
3ee83bd7079b5d32a56631e7e3c8cee2e6830703
/
.
/
LayoutTests
/
js
/
kde
/
script-tests
/
crash-2.js
blob: 5ae3188e31d4a54d61109e422a302c6c01007a88 [
file
] [
log
] [
blame
]
// infinite recursion 2
function
foo
()
{
foo
();
}
try
{
foo
();
}
catch
(
e
)
{
debug
(
"OK. Caught an exception"
);
}