class Foo { private volatile X volatileX; public void outer() { inner(volatileX); } private void inner(X localX) { assert localX == localX; } }