diff options
Diffstat (limited to 'tests/bugs164/pr194314/ITDOne.java')
-rw-r--r-- | tests/bugs164/pr194314/ITDOne.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs164/pr194314/ITDOne.java b/tests/bugs164/pr194314/ITDOne.java new file mode 100644 index 000000000..2a568ba8a --- /dev/null +++ b/tests/bugs164/pr194314/ITDOne.java @@ -0,0 +1,18 @@ +interface I { + +} + +class C implements I { + + public void m() { + foo(null,1,null); + fooStatic(6,1,null); + } +} + +aspect X { + void around(): call(* foo(..)) {} + public void I.foo(String s,int i,String[] ss) {} + void around(): call(* fooStatic(..)) {} + public static void C.fooStatic(long l,int i,String[] ss) {} +} |