Avatar
@swift-6.0.3 protocol P { func foo() -> Int? } struct S: P { func foo() -> Int { 42 } } let s = S() print(s.foo())