Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/error.invalid-hook-function-argument-mutates-local-variable.js
2026-08-27 21:09:14 +00:00

9 lines
149 B
JavaScript

// @validateNoFreezingKnownMutableFunctions
function useFoo() {
const cache = new Map();
useHook(() => {
cache.set('key', 'value');
});
}