blob: 94c06766c3550f03dfb657db59ec08876d250d1d (
plain)
1
2
3
4
5
6
7
8
|
// "@DeclareWarning with a non-final String"
import org.aspectj.lang.annotation.*;
aspect A{
@DeclareWarning("within(org..*)")
static String msg = "Let this be a warning to you";
}
|