blob: 1ced2313ef753dba6aff6eac9f698a29378e26ae [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4620794
* @summary compiler allows null + null
* @author gafter
*
* @compile/fail/ref=NullAppend.out -XDrawDiagnostics NullAppend.java
*/
class NullAppend {{
String s = null + null;
}}