summaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr241861/Y.java
blob: da4eb96c6311e99775e0951eb2e938f73b0c09d7 (plain)
1
2
3
4
5
6
7
8
9
aspect Asp {
  before(): execution(new(String)) {}
}

class Outer {
  public class Inner {
    Inner(String arg) {}
  }
}