1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
13 * Tests calling a private method where the extending class also has a method
14 * with the same name and descriptor, but is public.
18 public class TestInvokePrivateInSuper
19 extends __InvokePrivateInSuper__
32 * Private method in current class, named the same but is public since it
33 * was hidden in a super class.
37 public void doPrivate()
39 this.secondary("instanceprivatewascalled", false);