diff options
author | aclement <aclement> | 2009-11-26 23:20:23 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-11-26 23:20:23 +0000 |
commit | 80f517ebf71430b6eed15c34a5103d2bf504f5a9 (patch) | |
tree | bb270a49205723b6442888818b7dade73297a1a5 /tests/bugs167 | |
parent | 04ad1337131d249cc42840afea4ed32beeb61512 (diff) | |
download | aspectj-80f517ebf71430b6eed15c34a5103d2bf504f5a9.tar.gz aspectj-80f517ebf71430b6eed15c34a5103d2bf504f5a9.zip |
296040: method dispatch problem with google collections
Diffstat (limited to 'tests/bugs167')
-rw-r--r-- | tests/bugs167/pr296040/ErrorClass.java | 17 | ||||
-rw-r--r-- | tests/bugs167/pr296040/gc10rc4.jar | bin | 0 -> 589070 bytes |
2 files changed, 17 insertions, 0 deletions
diff --git a/tests/bugs167/pr296040/ErrorClass.java b/tests/bugs167/pr296040/ErrorClass.java new file mode 100644 index 000000000..35f7e3cf4 --- /dev/null +++ b/tests/bugs167/pr296040/ErrorClass.java @@ -0,0 +1,17 @@ +import java.util.Set; +import java.util.Map.Entry; + +import com.google.common.collect.TreeMultimap; + +public class ErrorClass { + + public void useGoogleCollections() { + TreeMultimap<String, String> countResult = TreeMultimap.create(); + Set<Entry<String, String>> entries = countResult.entries(); + System.out.println(entries.size()); + } + + public static void main(String[] args) { + new ErrorClass().useGoogleCollections(); + } +}
\ No newline at end of file diff --git a/tests/bugs167/pr296040/gc10rc4.jar b/tests/bugs167/pr296040/gc10rc4.jar Binary files differnew file mode 100644 index 000000000..f2386fe6e --- /dev/null +++ b/tests/bugs167/pr296040/gc10rc4.jar |