aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/ataspectj/coverage/Test029.java
blob: 35d22937e67ef2edcfc83ab65ceb967c4f701fd6 (plain)
1
2
3
4
5
6
7
8
// "@DeclareWarning with a static final Object (that is a String)"

import org.aspectj.lang.annotation.*;

aspect A{
	  @DeclareWarning("within(org..*)")
	  static final Object msg = new String("woo");
}