--- title: Structure with Pointers test_name: TestStructureWithPointers file_name: shutter_test.go version: 0.1.0 --- shutter_test.Person{ Name: "John", Age: 35, Address: &shutter_test.Address{ Street: "123 Main St", City: "Boston", Zip: "02101", }, Manager: &shutter_test.Person{ Name: "Jane", Age: 30, Address: (*shutter_test.Address)(), Manager: (*shutter_test.Person)(nil), Friends: []*shutter_test.Person(nil), Email: &string("jane@example.com"), }, Friends: []*shutter_test.Person{ (*shutter_test.Person)(), }, Email: (*string)(nil), }