diff options
author | acolyer <acolyer> | 2006-02-03 10:16:11 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2006-02-03 10:16:11 +0000 |
commit | 03bb056c7decd47d5b53081e7d91b389b18835e9 (patch) | |
tree | 17f5d761e7888d2db1e1b0103fc6d7e6b8d0b674 | |
parent | 19b926e5c905acc5beb3738a5668f9705ea79cf9 (diff) | |
download | aspectj-03bb056c7decd47d5b53081e7d91b389b18835e9.tar.gz aspectj-03bb056c7decd47d5b53081e7d91b389b18835e9.zip |
Progress on: Bug 126316: Invalid method signature: Pjava/lang/Enum<Ljava/lang/Object;>;
https://bugs.eclipse.org/bugs/show_bug.cgi?id=126316
--> test case to reproduce
-rw-r--r-- | tests/bugs151/Pr126316.aj | 14 |
1 files changed, 14 insertions, 0 deletions
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<E extends Enum<E>> { + + public E get() { return null; } + +} + +aspect SimpleAspect { + + Object around() : execution(* *(..)) { + System.out.println("before"); + return proceed(); + } + +}
\ No newline at end of file |