--- source: crates/biome_js_analyze/tests/spec_tests.rs expression: valid.js --- # Input ```jsx g(); function g() { f(); } function f() {} new C(); class C {} export { X }; const X = 1; let a; console.log(a); function h() { Y; }; const Y = 0; ```