/** * This file is licensed under the University of Illinois/NCSA Open Source License. See LICENSE.TXT for details. */ package edu.illinois.codingspectator; class Parent { private int fieldToBePushedDown; private int field2; } class Child1 extends Parent { private char field2; } class Child2 extends Parent { }