1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 21:43:07 +03:00

Unroll should be indirect.

This commit is contained in:
Rob Rix 2015-10-14 09:56:46 -04:00
parent 59dd626361
commit 3985ef0fea

View File

@ -1,7 +1,7 @@
// Copyright © 2015 GitHub. All rights reserved.
public enum Cofree<A, B> {
case Unroll(B, Syntax<Cofree, A>)
indirect case Unroll(B, Syntax<Cofree, A>)
}