/** * This file is licensed under the University of Illinois/NCSA Open Source License. See LICENSE.TXT for details. */ package edu.illinois.codingspectator; class Parent { void m() { } } class Child extends Parent { void m() { } }