diff options
author | acolyer <acolyer> | 2005-08-19 14:47:59 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-19 14:47:59 +0000 |
commit | 2b23e912c5e57b0731b25c3a26ec365b20468b0f (patch) | |
tree | 8614dfafda39385ad31cfad17473f76a8c73db41 /tests/bugs150/pr78261.aj | |
parent | 169a48870ac2680169e0632ee8d79b372949be10 (diff) | |
download | aspectj-2b23e912c5e57b0731b25c3a26ec365b20468b0f.tar.gz aspectj-2b23e912c5e57b0731b25c3a26ec365b20468b0f.zip |
tests for pr78261, field patterns with a void field type
Diffstat (limited to 'tests/bugs150/pr78261.aj')
-rw-r--r-- | tests/bugs150/pr78261.aj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/bugs150/pr78261.aj b/tests/bugs150/pr78261.aj new file mode 100644 index 000000000..64df073d4 --- /dev/null +++ b/tests/bugs150/pr78261.aj @@ -0,0 +1,5 @@ +public aspect pr78261 { + + pointcut absurd() : get(void *); // CE L3, fields can't be void + +}
\ No newline at end of file |