1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-27 05:54:38 +02:00
org.aspectj/tests/new/StaticInnerAspect.java
2002-12-16 18:51:06 +00:00

16 satır
267 B
Java

import org.aspectj.testing.*;
public class StaticInnerAspect {
public static void main(String[] args) {
Tester.check(true, "compiled");
}
}
aspect Aspect {
static class InnerClass {
static aspect InnerAspect {
}
}
}