aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr241861/Y.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs162/pr241861/Y.java')
-rw-r--r--tests/bugs162/pr241861/Y.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs162/pr241861/Y.java b/tests/bugs162/pr241861/Y.java
new file mode 100644
index 000000000..da4eb96c6
--- /dev/null
+++ b/tests/bugs162/pr241861/Y.java
@@ -0,0 +1,9 @@
+aspect Asp {
+ before(): execution(new(String)) {}
+}
+
+class Outer {
+ public class Inner {
+ Inner(String arg) {}
+ }
+}