I get an error
Playground execution failed: MyPlaygroundDeleteLast6.playground: 98: 28: (_st: String) {... ^
Here is the code:
class myClass { required convenience init(_ string:String) { self.init() print(string) } } class mySubclass: myClass { } Why? Shouldn’t convenience init just be inherited?