Created
September 4, 2018 14:11
-
-
Save kbinani/5e9d60bb26dc1d332d2a66811b202d9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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