aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr203646/ExampleG.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs154/pr203646/ExampleG.java')
-rw-r--r--tests/bugs154/pr203646/ExampleG.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs154/pr203646/ExampleG.java b/tests/bugs154/pr203646/ExampleG.java
new file mode 100644
index 000000000..7063ea95a
--- /dev/null
+++ b/tests/bugs154/pr203646/ExampleG.java
@@ -0,0 +1,10 @@
+interface I {
+ interface J< T > {
+ T getT();
+ }
+}
+public aspect ExampleG {
+ public T I.J< T >.intro() {
+ return null;
+ }
+} \ No newline at end of file