I\'m having an issue when using a Generic as the type constraint on a property. Here is a very simple example:
import UIKit class TSSignal
EDIT EDIT:
This is definitely a bug in the compiler.
I tried to 'outsmart' the compiler by using the following:
class TSSignal { var messageType : Optional = nil init() { } }
Same issue.