summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr78261.aj
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-08-19 14:47:59 +0000
committeracolyer <acolyer>2005-08-19 14:47:59 +0000
commit2b23e912c5e57b0731b25c3a26ec365b20468b0f (patch)
tree8614dfafda39385ad31cfad17473f76a8c73db41 /tests/bugs150/pr78261.aj
parent169a48870ac2680169e0632ee8d79b372949be10 (diff)
downloadaspectj-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.aj5
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