Avatar
@swiftbot struct Foo { var a: Int var b: Int init() { a = 2 b = [2, 3, 5].reduce(0) { [a] in $0 + $1 + a } } }
🛠 1