prettier/tests/flow/annot2/B.js

10 lines
93 B
JavaScript

/**
* @flow
*/
import A from "A"
class B extends A {
p: string; // OK, string ~> any
}