Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/error.bug-context-variable-catch-in-lambda.js
2026-08-27 21:09:14 +00:00

10 lines
111 B
JavaScript

// @flow
function Foo() {
try {
doSomething();
} catch (e) {
foo(() => e);
}
return <div />;
}