prettier/tests/flow/optional/undefined2.js

10 lines
83 B
JavaScript

var x;
function foo(bar?) {
x = bar;
}
function bar() {
return x.duck;
}