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
This is NOT an "answer" (it is my own question), but I thought it worth noting what I did in this case to move passed this situation, for the time being.
import UIKit class TSSignal { var message: AnyObject? init() { } }
Lame, but I am sure it's only temporary.