prettier/tests/flow/destructuring/unannotated.js

10 lines
75 B
JavaScript

// @flow
var { x } = {
x: { foo: "foo" }
};
function bar() {
x.bar
}