main() {
	c := new(Counter)
	c.value += 16
}

struct Counter {
	value int
}