From 03bb056c7decd47d5b53081e7d91b389b18835e9 Mon Sep 17 00:00:00 2001 From: acolyer Date: Fri, 3 Feb 2006 10:16:11 +0000 Subject: [PATCH] Progress on: Bug 126316: Invalid method signature: Pjava/lang/Enum; https://bugs.eclipse.org/bugs/show_bug.cgi?id=126316 --> test case to reproduce --- tests/bugs151/Pr126316.aj | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/bugs151/Pr126316.aj diff --git a/tests/bugs151/Pr126316.aj b/tests/bugs151/Pr126316.aj new file mode 100644 index 000000000..bc6c6ee49 --- /dev/null +++ b/tests/bugs151/Pr126316.aj @@ -0,0 +1,14 @@ +class EnumFun> { + + public E get() { return null; } + +} + +aspect SimpleAspect { + + Object around() : execution(* *(..)) { + System.out.println("before"); + return proceed(); + } + +} \ No newline at end of file -- 2.39.5