summaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr211146/GenericsLost2.java
blob: 1fc1b155f43c0b8037c0eb8019b1e023a1012bde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.util.*;
import java.lang.reflect.*;

aspect Foo {

   public List<String> GenericsLost2.getStrings() {
     return null;
   }
}

class GenericsLost2 {
}