summaryrefslogtreecommitdiffstats
path: root/tests/bugs170/language/PerCflow.java
blob: 223b4870379b3ee88116e054f8098daffb8e335f (plain)
1
2
3
4
5
6
7
8
9
10
aspect PerCflow percflow(execution(* Bar.*(..))) {
}

class Bar {
  void m() { 
    n();
  }
  void n() { 
  }
}