Compilation fails for pertypewithin aspects when using Java modules.
Example source:
package com.example.aspects;
public aspect Test pertypewithin(com.example..*) {
}
module-info.java:
module test {
requires org.aspectj.runtime;
}
ajcore:
ajcore.20250710.152012.048.txt
Without the pertypewithin clause, it compiles correctly.