blob: 6cc94aaa5ee04dc6891b2961eec05eb70d099d30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public class Foo implements I {
public static void main(String []argv) {
new Foo();
}
}
interface I {
}
aspect X {
declare parents: I implements java.io.Serializable;
}
|