mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
167 B
Swift
12 lines
167 B
Swift
import A
|
|
|
|
extension Impl : Proto {
|
|
public func wellNow() {
|
|
print("Impl conformance in B")
|
|
}
|
|
}
|
|
|
|
public func setAnyWithImplFromB() {
|
|
any = Container(Impl())
|
|
}
|