diff options
author | acolyer <acolyer> | 2005-06-02 14:39:02 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-06-02 14:39:02 +0000 |
commit | f3aa086082b9ec08e414f67dfdc1efa6a85e0d18 (patch) | |
tree | bf20b0d017e1ace4a4bc859781cbcc46f66dbe44 /tests/java5/generics/itds/Parse2.java | |
parent | 27c6150906667e299a6952bc4dda642aad00578d (diff) | |
download | aspectj-f3aa086082b9ec08e414f67dfdc1efa6a85e0d18.tar.gz aspectj-f3aa086082b9ec08e414f67dfdc1efa6a85e0d18.zip |
fix some glitches in test cases to ensure that these are legal AspectJ declarations...
Diffstat (limited to 'tests/java5/generics/itds/Parse2.java')
-rw-r--r-- | tests/java5/generics/itds/Parse2.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/java5/generics/itds/Parse2.java b/tests/java5/generics/itds/Parse2.java index 2764904cb..4bee305fd 100644 --- a/tests/java5/generics/itds/Parse2.java +++ b/tests/java5/generics/itds/Parse2.java @@ -2,5 +2,5 @@ public class Parse2 { } aspect X { - static <T> T Parse2.m(T) {} + static <T> T Parse2.m(T timeFor) { return null; } } |