Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7606820828140fa3a9e2372936c1d9a57a12a974 (plain) (blame)
1
2
3
4
5
6
7
8
package p;
public class A {

	public static void method() {
		System.out.println("TestA.method");
		B.method();
	}
}

Back to the top