summaryrefslogtreecommitdiffstats
path: root/tests/bugs/interInherit/b_impl/BImpl.java
blob: 7d0f7a934185ca81a41d38a1ff4326fc8c9a7a08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package b_impl;

import a_impl.AImpl;
import b_intf.B;

public class BImpl
  extends AImpl
  implements B
{
  public B g()
  {
	System.out.println( "g called" );
	return null;
  }
  
  public static void main(String[] args) {
  	new BImpl().g();
  	new BImpl().f();
  }
}