Hi,
I have a question whether what I observe is by-design, a bug, or not yet fully
implemented feature in Swift Package Manager.
- Let’s say, I have a C repository with some library, and it has two versions
tagged, namely 0.0.1 and 0.0.2.
- Then I have a Swift repository that includes the above
>
>> On Oct 28, 2016, at 1:53 PM, Anton Bronnikov via swift-users
>> wrote:
>>
>> Hi,
>>
>> I have a question whether what I observe is by-design, a bug, or not yet
>> fully implemented feature in Swift Package Manager.
>>
>> - Let’s say, I
Hi All,
If I have a protocol with a property requirement such as:
protocol Foo {
var value: Int { get }
}
.. and I need to conform to it using an implicitly unwrapped optional like:
struct Bar : Foo {
let value: Int! = nil
}
.. then the compiler fails with an error:
Playground executi
the protocol, which
> requires the `value` never nil.
>
> Zhaoxin
>
> On Mon, May 29, 2017 at 12:37 PM, Anton Bronnikov via swift-users
> mailto:swift-users@swift.org>> wrote:
> Hi All,
>
> If I have a protocol with a property requirement such as:
>
> protoco