mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
// Test that B.3.5 for-in head initializers with function expressions
|
|
// produce NewFunction with the correct lhs_name.
|
|
function fn() {
|
|
for (var f = (function () {}) in {}) {
|
|
}
|
|
}
|
|
fn();
|