<!--{
"Title": "The Go Programming Language Specification",
- "Subtitle": "Version of December 12, 2012",
+ "Subtitle": "Version of January 2, 2013",
"Path": "/ref/spec"
}-->
operation; or a field selector of an addressable struct operand;
or an array indexing operation of an addressable array.
As an exception to the addressability requirement, <code>x</code> may also be a
+(possibly parenthesized)
<a href="#Composite_literals">composite literal</a>.
</p>
<p>
<pre>
&x
&a[f(2)]
+&Point{2, 3}
*p
*pf(x)
</pre>