summaryrefslogtreecommitdiffstats
path: root/tests/bugs/concretizeNpe/base/ExceptionHandling.java
blob: 5f63ad61a258ea73109cea58a64d665c5d916696 (plain)
1
2
3
4
5
6
package base;

public abstract aspect ExceptionHandling {
    public abstract pointcut scope();
    declare soft: Exception: scope();
}