diff options
Diffstat (limited to 'tests/bugs153/GenericMethod/C.java')
-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; } |