aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/testproxy/Target4.java
blob: 82ddef69b43870697f843c2e46cdf2efb2a58e82 (plain)
1
2
3
4
5
6
7
8
9
package testproxy;

interface Target4Super {
    int foo4(); 
}

public interface Target4 extends Target4Super {
    int bar4();
}