This file contains hidden or 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
// This fails in an isolated playground as expected, | |
// but when the original struct is in an SPM package | |
// and the extension is in my app it does not, | |
// and the extension version is what ultimately gets called | |
public struct Test { | |
public var property: String | |
} | |
extension Test { |