Skip to content

Instantly share code, notes, and snippets.

@kbinani
Created September 4, 2018 14:11
Show Gist options
  • Save kbinani/5e9d60bb26dc1d332d2a66811b202d9b to your computer and use it in GitHub Desktop.
Save kbinani/5e9d60bb26dc1d332d2a66811b202d9b to your computer and use it in GitHub Desktop.
import Foundation
class A {
private enum B {
case one
case two(IndexPath)
case three(IndexPath, Int)
}
private var b: B = .one
}
func main() {
let a = A()
print(a)
}
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment