org.aspectj/tests/pureJava/AssertsCF2.java

9 lines
188 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
import org.aspectj.testing.Tester;
public class AssertsCF2 {
public static void main(String[] args) {
String s;
assert true: s; //ERR: s might not be assigned
}
}