Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
12 lines
419 B
Java
12 lines
419 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7153951
|
|
* @compile ClassUsingAnotherAuxiliary.java NotAClassName.java
|
|
* @compile -Xlint:auxiliaryclass ClassUsingAnotherAuxiliary.java NotAClassName.java
|
|
* @compile/fail/ref=ClassUsingAnotherAuxiliary.out -XDrawDiagnostics -Werror -Xlint:auxiliaryclass ClassUsingAnotherAuxiliary.java NotAClassName.java
|
|
*/
|
|
|
|
class ClassUsingAnotherAuxiliary {
|
|
AnAuxiliaryClass ahem;
|
|
}
|
|
|