Skip to content

Instantly share code, notes, and snippets.

@koher
Created July 22, 2017 15:04
Show Gist options
  • Save koher/be749c7ae1a7d7d9344f6de94d6c074c to your computer and use it in GitHub Desktop.
Save koher/be749c7ae1a7d7d9344f6de94d6c074c to your computer and use it in GitHub Desktop.
// 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