aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr110307/Case4.java
blob: dc67a95526658d8c755dcea6244e3bc946d85382 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.*;
import java.lang.annotation.*;
import java.lang.ref.*;

interface I<T> {
}

class A {
  List<String> foo() { return null; }
}

aspect X {

  List<T> I<T>.foo() { return null; }  // should be ok - A implements I<String>

  declare parents: A implements I<String>;
}