diff options
author | aclement <aclement> | 2008-08-28 02:18:27 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-08-28 02:18:27 +0000 |
commit | 8e99d6053bd8f2cfa89eb37de5be24e1dd48aef9 (patch) | |
tree | e741751a5ecb415109932e005537992c1c752fed /tests/bugs153 | |
parent | 985947987e77d5f4aafc8fc74f9e2c9fd9e4bf21 (diff) | |
download | aspectj-8e99d6053bd8f2cfa89eb37de5be24e1dd48aef9.tar.gz aspectj-8e99d6053bd8f2cfa89eb37de5be24e1dd48aef9.zip |
245286: test and fix: ajdoc does not generate signature correctly for generic constructer
Diffstat (limited to 'tests/bugs153')
-rw-r--r-- | tests/bugs153/GenericMethod/C.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/bugs153/GenericMethod/C.java b/tests/bugs153/GenericMethod/C.java index 8621aca45..01751d898 100644 --- a/tests/bugs153/GenericMethod/C.java +++ b/tests/bugs153/GenericMethod/C.java @@ -1,6 +1,9 @@ import java.util.List; public class C { + public <T> C(T b){ + } + public <T> T returnT(T a){ return a; } |