blob: b4bdf574019f2a0934cc43c5d67c240d947c9292 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import org.aspectj.testing.Tester;
public class BadIntroduction {
public static void main(String[] args) {
String s;
Tester.check(false, "the compiler should have given an error");
}
}
introduction (String) {
}
|