I have following struct:
public protocol SuperModel { // empty protocol } struct ModelOne: SuperModel { struct SubModelOne { var someVar: Dou
In Swift 3, in my case, I was able to resolve the error just by changing struct to a class object.
struct
class