1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 17:59:10 +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. // Copyright © 2015 GitHub. All rights reserved.
public enum Cofree<A, B> { public enum Cofree<A, B> {
case Unroll(B, Syntax<Cofree, A>) indirect case Unroll(B, Syntax<Cofree, A>)
} }