Just encountered this problem.
caused by a guard let unwrapping with the same name as a previous value in the same block, the compiler didn't identify the error.
example :
{
var mData : String? = Storage.value(key: "mValue")
guard let mData = mData else {return}
}
Topic:
Programming Languages
SubTopic:
Swift
Tags: