You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

XLintWarningTest.java 195B

1234567891011
  1. public aspect XLintWarningTest {
  2. before() : staticinitialization(UnknownType) { // CW 5 - XLint:invalidAbsoluteTypeName
  3. System.err.println("never");
  4. }
  5. }