prettier/tests/flow/annot/any/B.js

6 lines
77 B
JavaScript

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