Implement WeakHashMap.
[SquirrelJME.git] / modules / cldc-compact / src / test / java / lang / TestInvokePrivateInSuper.java
blob4caefdc76e48557a88d0f54bd686f9794ab2ac1b
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
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 // ---------------------------------------------------------------------------
10 package lang;
12 /**
13 * Tests calling a private method where the extending class also has a method
14 * with the same name and descriptor, but is public.
16 * @since 2018/10/10
18 public class TestInvokePrivateInSuper
19 extends __InvokePrivateInSuper__
21 /**
22 * {@inheritDoc}
23 * @since 2018/10/10
25 @Override
26 public void test()
28 this.doSuper();
31 /**
32 * Private method in current class, named the same but is public since it
33 * was hidden in a super class.
35 * @since 2018/10/10
37 public void doPrivate()
39 this.secondary("instanceprivatewascalled", false);