8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
|
function useInvalidMutation(options) {
|
||
|
function test() {
|
||
|
// error should not point on this line
|
||
|
options.foo |> foo(%);
|
||
|
options.foo = "bar";
|
||
|
}
|
||
|
return test;
|
||
|
}
|