Adding a (convenient) computed height property to UIView in my UIViewExtension.swift file is causing the Swift compiler to segfault...
height
UIView
UIViewExtension.swift
For me the following caused a segfault while type is an optional:
type
switch type { case .aType: // Do Something default: break }
and this solved it:
switch type { case .Some(.aType): // Do Something default: break }