diff options
author | acolyer <acolyer> | 2005-09-02 09:35:02 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-09-02 09:35:02 +0000 |
commit | ad753aa80558748ab918988809ba6f58b8c26419 (patch) | |
tree | 15a36e27d17c78829d0324a44ed8a4850c1a9789 /tests/bugs150/pr108602.java | |
parent | 372a025d85641e17d9fff734a0c2e9770fd2d55f (diff) | |
download | aspectj-ad753aa80558748ab918988809ba6f58b8c26419.tar.gz aspectj-ad753aa80558748ab918988809ba6f58b8c26419.zip |
tests and fix for pr108062, failing to correctly tokenize (ZZLjava/...)
Diffstat (limited to 'tests/bugs150/pr108602.java')
-rw-r--r-- | tests/bugs150/pr108602.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/bugs150/pr108602.java b/tests/bugs150/pr108602.java new file mode 100644 index 000000000..3ce6f4b1b --- /dev/null +++ b/tests/bugs150/pr108602.java @@ -0,0 +1,38 @@ +/* + * GenericsError.java + * + * Created on September 1, 2005, 9:36 AM + * + */ + +import java.util.Collection; + +interface GenericsError { + public Collection<String> test( + boolean arg1, + boolean arg2, + Object arg3) ; +} + + +/* + * GenericsErrorImpl.java + * + * Created on September 1, 2005, 9:37 AM + * + */ + +class GenericsErrorImpl implements GenericsError { + + public Collection<String> test( + boolean arg1, + boolean arg2, + Object arg3) { return null; } + +} + +aspect ForceUnpacking { + + before() : execution(* *(..)) {} + +}
\ No newline at end of file |