1

完全错误:

致命错误:尝试评估编辑器占位符:文件 /var/folders/d0/q4xnv1gd5rs_j7cx8jv8qv1h0000gn/T/./lldb/30026/playground364.swift,第 531 行

这发生在使用 XCode 版本 8.2.1 (8C1002) 运行 500 多行 Swift Playground 时。

struct Nest : ExpressibleByIntegerLiteral {
    var eggCount : Int
    init(integerLiteral eggCount : Int) {
        self.eggCount = eggCount
    }
    init (_ eggCount : Int) {
        self.init(integerLiteral : eggCount)
    }
}

func describeNest(_ nest : Nest) {
    print("This nest has \(nest.eggCount) eggs")
}

let nest = Nest(6)
describeNest(nest)

这里的最后一行是第 531 行。

4

0 回答 0