aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/PR862/pack/ImportInnerFromInterfaceImplementor.java
blob: 10e89e569c7360ba2168c4e07fdb817bdfbda9f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package pack;

import pack.C.*;
import java.io.Serializable;

//import org.aspectj.testing.Tester;

//public class ImportInnerFromInterfaceImplementor {
//    public static void main(String[] args) {
//        C c = new C();
//        Tester.check(c instanceof Serializable, "c: " + c);
//    }
//}

class C implements Serializable {}