prettier/tests/flow/call_caching2/test.js

6 lines
83 B
JavaScript

// @flow
function Foo(items: ?Iterable<number>) {
Iterable(items || []).size;
}