aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr119570/INode.java
blob: 2c94ebf60aaeb83ccebb40861b708543b372de1a (plain)
1
2
3
4
5
6
package bugsOtherPackage;

public interface INode<Parent, Child> {
    boolean setParent(INode<Parent, Child> p);
    INode<Parent, Child> getParent();
}