diff options
Diffstat (limited to 'tests/features153/jdtlikehandleprovider/A9.aj')
-rw-r--r-- | tests/features153/jdtlikehandleprovider/A9.aj | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/features153/jdtlikehandleprovider/A9.aj b/tests/features153/jdtlikehandleprovider/A9.aj new file mode 100644 index 000000000..09f8eadae --- /dev/null +++ b/tests/features153/jdtlikehandleprovider/A9.aj @@ -0,0 +1,16 @@ +package pkg; + +public aspect A9 { + + public int C.x = 5; + + private void C.method() { + } + + public String C.methodWithArgs(int i) { + return ""; + } +} + +class C { +} |