This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol HasService1 { | |
var service1: Service1 { get } | |
} | |
protocol HasService2 { | |
var service2: Service2 { get } | |
} | |
class Service1 {} | |
class Service2 {} |