mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Default to not chain dynamic replacements: Only one replacement and the original implementation are active.
7 lines
97 B
Swift
7 lines
97 B
Swift
public struct Impl {
|
|
public init() {}
|
|
dynamic public func foo() -> Int {
|
|
return 1
|
|
}
|
|
}
|