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