All quizzes
SwiftCoreMultiple choice

After this runs, what are the values of `a.x` and `b.x`?

struct Point { var x = 0 }
var a = Point()
var b = a
b.x = 10