1
1
mirror of https://github.com/github/semantic.git synced 2024-11-23 16:37:50 +03:00

Tree is public.

This commit is contained in:
Rob Rix 2015-09-15 12:50:36 -04:00
parent 485565b4e4
commit 5f66984cec

View File

@ -1,6 +1,6 @@
// Copyright © 2015 GitHub. All rights reserved.
enum Tree<A> {
public enum Tree<A> {
case Leaf(A)
case Branch([Tree])
}