You can use the force expansion operator on an optional null variable:
let number: Int? = nil
let val = number!
This should throw an exception like this:
fatal error: nil unexpectedly found while deploying optional value
, fatalError, , - , , :
@noreturn func fatalError(@autoclosure message: () -> String = default, file: StaticString = default, line: UWord = default)