2012-11-01 09:48:36 +00:00
|
|
|
/**
|
2020-12-30 17:20:54 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2013-07-01 23:36:08 +00:00
|
|
|
* @bug 7153951
|
2012-11-01 09:48:36 +00:00
|
|
|
* @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;
|
|
|
|
}
|
|
|
|
|