diff options
author | aclement <aclement> | 2007-10-29 16:03:10 +0000 |
---|---|---|
committer | aclement <aclement> | 2007-10-29 16:03:10 +0000 |
commit | 3fb03ca8295926e82a14dfff3319bd7dd497a881 (patch) | |
tree | 46883854009b218e4a9a952ebab8daeb58e2d164 /tests/bugs154/pr203646/ExampleG.java | |
parent | 427211607630ca82f9f68c990cbf372aefe5b587 (diff) | |
download | aspectj-3fb03ca8295926e82a14dfff3319bd7dd497a881.tar.gz aspectj-3fb03ca8295926e82a14dfff3319bd7dd497a881.zip |
203646: tests and fixes for ITD method on generic inner type
Diffstat (limited to 'tests/bugs154/pr203646/ExampleG.java')
-rw-r--r-- | tests/bugs154/pr203646/ExampleG.java | 10 |
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 |