Created
July 22, 2017 15:04
-
-
Save koher/be749c7ae1a7d7d9344f6de94d6c074c 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
// destroyed by `-Ounchecked` | |
import Foundation | |
let a: Int | |
switch arc4random() % 3 { | |
case 0: | |
print("0") | |
a = 111 | |
case 1: | |
print("1") | |
a = 222 | |
default: | |
print("default") | |
preconditionFailure() | |
} | |
print(a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment