blob: 29a1e24ba6c24d47fc9336230f7ba80c7f842bd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package javax.foo;
public class A {
public static void main(String []argv) throws Exception {
new A().foo();
new B().foo();
}
public void foo() {
System.out.println("(A) method running");
}
}
|