13 lines
252 B
JavaScript
13 lines
252 B
JavaScript
|
// Expected to fail
|
||
|
|
||
|
// Invalid because it's dangerous and might not warn otherwise.
|
||
|
// This *must* be invalid.
|
||
|
function useHook() {
|
||
|
if (a) return;
|
||
|
if (b) {
|
||
|
"true" |> console.log(%);
|
||
|
} else {
|
||
|
"false" |> console.log(%);
|
||
|
}
|
||
|
useState();
|
||
|
}
|