11 lines
132 B
JavaScript
11 lines
132 B
JavaScript
function Foo(props) {
|
|
let x;
|
|
true && (x = []);
|
|
return x;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: Foo,
|
|
params: [{}],
|
|
};
|