diff options
author | aclement <aclement> | 2004-11-30 17:43:50 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-11-30 17:43:50 +0000 |
commit | 4d1c2948a2f18012cd49dbe8e3a32b1a863d4d45 (patch) | |
tree | 46a5c36fc674dba59ee56f88e38f1e9d8296a345 /tests/java5/bridgeMethods/Comparable.java | |
parent | cc251667ab8afaad4809643ea3760fe17e9c5607 (diff) | |
download | aspectj-4d1c2948a2f18012cd49dbe8e3a32b1a863d4d45.tar.gz aspectj-4d1c2948a2f18012cd49dbe8e3a32b1a863d4d45.zip |
Part of 72766: Bridge methods - we now do the right thing if we see one (i.e. we ignore it as a source of join points)
Diffstat (limited to 'tests/java5/bridgeMethods/Comparable.java')
-rw-r--r-- | tests/java5/bridgeMethods/Comparable.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/java5/bridgeMethods/Comparable.java b/tests/java5/bridgeMethods/Comparable.java new file mode 100644 index 000000000..0236945e2 --- /dev/null +++ b/tests/java5/bridgeMethods/Comparable.java @@ -0,0 +1,3 @@ +interface Comparable<A> { + public int compareTo(A that); +} |