org.aspectj/tests/errors/TwoDots.java
2002-12-16 18:51:06 +00:00

18 рядки
335 B
Java

import org.aspectj.testing.*;
public class TwoDots {
public static void main(String[] args) {
new TwoDots().realMain(args);
}
public void realMain(String[] args) {
this..foo();
//this..i = 14;
Tester.check(false, "Shouldn't have compiled");
}
int i = 13;
void foo() {}
}