Sobes.tech
Back to tasks
Junior — Senior
42

Что будет выведено в консоль (пример 2)

Companies where asked:

АльфаБанк
Get help with live coding in real time with Sobes Copilot
Task condition

Определите, какой текст появится в выводе программы и объясните, почему именно он выводится.

protocol Test {
    func test()
}
extension Test {
    func test() { print("A") }
}

struct Cat: Test {
    func test() { print("C") }
}

var obj: Test = Cat()
obj.test()