削除された内容 追加された内容
124 行
<syntaxhighlight lang="swift">
var o:Int! = nil // 暗黙的開示Optional型。自動的に強制アンラップされるが、nilの場合に実行時エラーとなる
var p:ImplicitlyUnwrappedOptional<Int> = nil // Int?! は ImplicitlyUnwrappedOptional<Int> の略記である
</syntaxhighlight>
<syntaxhighlight lang="swift">