diff options
Diffstat (limited to 'tests/bugs163')
-rw-r--r-- | tests/bugs163/pr250632/MyAspect.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs163/pr250632/MyAspect.java b/tests/bugs163/pr250632/MyAspect.java new file mode 100644 index 000000000..a1ddb4f75 --- /dev/null +++ b/tests/bugs163/pr250632/MyAspect.java @@ -0,0 +1,18 @@ +interface IMarker<CLOCK,STATE> { } + +public aspect MyAspect +{ + + public void IMarker<CLOCK,STATE>.map() + { + CLOCK[] var = find(); + }; + + + + public CLOCK[] IMarker<CLOCK,STATE>.find() + { + return null; + } + +} |