Why do I receive the below error in this code?
final class HomeViewController : someBaseClass {
init(something: SomethingProtocol) {
someFunction {
self.something = something
super.init(nibName: Self.nibName(), bundle: Bundle.main) //here
}
}
}
Initializer chaining ('super.init') cannot be nested in another expression