diff options
author | acolyer <acolyer> | 2005-08-16 09:25:20 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-16 09:25:20 +0000 |
commit | 289eb6a040da3d89b29d39deae0b42c70956cc64 (patch) | |
tree | a664f77050039ef53fca30918f2c8098898c99d5 /tests | |
parent | e7b11c1ad0bfacd0572300478656c19cdba63ff0 (diff) | |
download | aspectj-289eb6a040da3d89b29d39deae0b42c70956cc64.tar.gz aspectj-289eb6a040da3d89b29d39deae0b42c70956cc64.zip |
test for Bugzilla Bug 107059
parser crashes on call(void (@a *)(..)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs150/pr107059.aj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/bugs150/pr107059.aj b/tests/bugs150/pr107059.aj new file mode 100644 index 000000000..9cae5a177 --- /dev/null +++ b/tests/bugs150/pr107059.aj @@ -0,0 +1,5 @@ +public aspect pr107059 { + + before() : call(void (@a *)(..)) {} // note missing "." in pattern + +}
\ No newline at end of file |