blob: 262be470557d5909520103079be2734c0d37ab84 (
plain)
1
2
3
4
5
6
7
8
|
import org.aspectj.testing.Tester;
public class ClassAndInterface {
public static void main(String[] args) {
Tester.check(false, "shouldn't have compiled");
}
}
class I {}
interface I {}
|