From 0e3c87c56d6120afa0bb0db602a73b473d23b04a Mon Sep 17 00:00:00 2001 From: jhugunin Date: Wed, 2 Jul 2003 23:21:51 +0000 Subject: added test for Bugzilla Bug 39462 Compiler crashes in jar and cflow --- tests/bugs/cflowAndJar/AbstractAspect.aj | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/bugs/cflowAndJar/AbstractAspect.aj (limited to 'tests/bugs/cflowAndJar/AbstractAspect.aj') diff --git a/tests/bugs/cflowAndJar/AbstractAspect.aj b/tests/bugs/cflowAndJar/AbstractAspect.aj new file mode 100644 index 000000000..529cc08b6 --- /dev/null +++ b/tests/bugs/cflowAndJar/AbstractAspect.aj @@ -0,0 +1,6 @@ +public abstract aspect AbstractAspect{ + public abstract pointcut directCall(); + before(): directCall(){ + System.out.println("direct"); + } +} -- cgit v1.2.3