cc2861a993
Reviewed-by: jjg
14 lines
564 B
Java
14 lines
564 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8020586
|
|
* @summary Warnings in the imports section should be attributed to the correct source file
|
|
* @clean Auxiliary ImplicitCompilation
|
|
* @compile/ref=ImplicitCompilation.out --release 8 -XDrawDiagnostics -Xlint:deprecation,-options -sourcepath . ImplicitCompilation.java
|
|
* @clean Auxiliary ImplicitCompilation
|
|
* @compile/ref=ExplicitCompilation.out --release 8 -XDrawDiagnostics -Xlint:deprecation,-options ImplicitCompilation.java Auxiliary.java
|
|
*/
|
|
|
|
public class ImplicitCompilation {
|
|
private Auxiliary a;
|
|
}
|