class Parent { Parent(Object o) {} } class PassThisBeforeSuper extends Parent { PassThisBeforeSuper() { Object self = this; // 'this' escapes before super() super(self); } }