Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/error.todo-invalid-jsx-in-try-with-finally.js
2026-08-27 21:09:14 +00:00

11 lines
170 B
JavaScript

// @validateNoJSXInTryStatements @outputMode:"lint"
function Component(props) {
let el;
try {
el = <div />;
} finally {
console.log(el);
}
return el;
}