Ios swift – Actors conformance to Protocols
What is the rationale behind Swift compiler being overly strict about Protocol conformances? For instance, consider the following code: protocol TestProtocol { func testFunction() } actor TestClass: TestProtocol { func testFunction() { } } The build fails with the error…