blob: 29f7c7621b5598eb7d5930b02c76ce235b46ae3c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) May 24, 2013 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.tests.targets;
public class HcrClass5 {
static class InnerClass {
public InnerClass() {
String s = new String("Constructor");
new HcrClass5().run();
}
public void run() {
String s = new String("InnerClass#run()");
new HcrClass5().run();
}
public void run2() {
String s = new String("InnerClass#run2()");
new HcrClass5().outerrun();
}
}
public void run() {
String s = new String("LocalHCR#run()");
}
public void outerrun() {
String s = new String("LocalHCR#outerrun()");
}
public static void main(String[] args) {
InnerClass clazz = new InnerClass();
clazz.run();
clazz.run2();
}
}