struct Point { var x, y: Int}let p1 = Point(x: 1, y: 2)//p1 is (1, 2)print("p1 is (\(p1.x), \(p1.y))")let p2: Pointlet x2 = p2.x //<- Error