prettier/tests/flow/funrec/funrec.js

7 lines
113 B
JavaScript

function bar(x) { return x; }
function foo() {
return function bound() {
return bar(bound);
};
}