xxxxxxxxxx
void main() {
shared int a;
// The following won't work, great.
//++a;
// This should either not work or introduce a barrier on some CPUs.
int b = a;
}