blob: 75e676a5036254d7f2bd924c411154904fb1f596 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public aspect pr105479 {
private interface Test {
Object getId();
}
class StringTest {
public String getId() {
return null;
}
}
declare parents : StringTest implements Test;
}
|