summaryrefslogtreecommitdiffstats
path: root/tests/bugs/interInherit/b_intf/B.java
blob: d21644dbd95c41ec2112d488b00c43a2c4c7a059 (plain)
1
2
3
4
5
6
7
8
9
10
package b_intf;

import a_intf.A;

public interface B
  extends A
{
  B g();
}