Since p.M is rejected (must call methods), use p.M(),
to keep the examples compiling.
Fixes #4441.
R=gri
CC=golang-dev
https://golang.org/cl/
6854096
<!--{
"Title": "The Go Programming Language Specification",
- "Subtitle": "Version of November 21, 2012",
+ "Subtitle": "Version of November 26, 2012",
"Path": "/ref/spec"
}-->
p.y // ((*p).T1).y
p.x // (*(*p).T0).x
-p.M2 // (*p).M2
-p.M1 // ((*p).T1).M1
-p.M0 // ((*p).T0).M0
+p.M2() // (*p).M2()
+p.M1() // ((*p).T1).M1()
+p.M0() // ((*p).T0).M0()
</pre>