``` go type Ormer interface { Insert(interface{}) } func Save(o Ormer) { (*o).Insert(1) // should be an error: invalid indirect of o (type Ormer) } ```