diff options
Diffstat (limited to 'tests/bugs160/pr171953/test/RunnableAspect.aj')
-rw-r--r-- | tests/bugs160/pr171953/test/RunnableAspect.aj | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs160/pr171953/test/RunnableAspect.aj b/tests/bugs160/pr171953/test/RunnableAspect.aj new file mode 100644 index 000000000..fa12b7b99 --- /dev/null +++ b/tests/bugs160/pr171953/test/RunnableAspect.aj @@ -0,0 +1,11 @@ +package test; + +public aspect RunnableAspect { + +// public void Executable.run() { +// execute(); +// } +// +// //declare parents: (Executable+ && !Executable) implements Runnable; +// declare parents: AbstractExecutable implements java.io.Serializable; +} |