blob: b9f88f1ccf46e8b72275f01051abda27d4f44a88 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4049982
* @summary Compiler permitted invalid hex literal.
* @author turnidge
*
* @compile/fail/ref=BadHexConstant.out -XDrawDiagnostics BadHexConstant.java
*/
public
class BadHexConstant {
long i = 0xL;
}