blob: 83ade677909529ebe0799c0dff337dc827cfe17a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
public class Bugs {
public static void main(String[] args) {
System.out.println("" + (new C())); // + instanceof A.I));
}
static class C{}
static aspect A {
private interface I {}
declare parents : C implements I;
}
}
|