Skip to content

Commit 809306c

Browse files
Remove hhvm@next incompatible type constraint
1 parent e47f420 commit 809306c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FlowKind.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ newtype Successor<+T as Flow> as T = T;
4848
* A Flow that doesn't have a kind yet. You can pass this Flow anywhere.
4949
* If you are writing a Flow class, @see `cast_to_chameleon__DO_NOT_USE()`.
5050
*/
51-
type Chameleon<+T as Flow> = Descendant<Init<Successor<T>>>;
51+
type Chameleon<+T> = Descendant<Init<Successor<T>>>;
5252

5353
/**
5454
* There must be some way to convert a newly constructed Flow (without a kind)

0 commit comments

Comments
 (0)