mirror of
https://github.com/MeiK2333/river.git
synced 2025-09-26 22:49:11 +08:00
6 lines
110 B
JavaScript
6 lines
110 B
JavaScript
return 42; // should be inside a function
|
|
function f() {
|
|
'use strict';
|
|
var x = 042;
|
|
with (z) { }
|
|
} |