Closed
Description
Likely related to #215. Recursive type structs cause a maximum call-stack exceeded error when parsing with Flow.
import * as React from "react";
type Identity<T> = T;
type Props<T> = {
prop: Identity<T>
};
export default function MyComponent<T>(props: Props<T>) {
return <div/>
}
Metadata
Metadata
Assignees
Labels
No labels