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.
13 lines
266 B
Java
13 lines
266 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4049982 8056897
|
|
* @summary Compiler permitted invalid hex literal.
|
|
* @author turnidge
|
|
*
|
|
* @compile/fail/ref=BadHexConstant.out -XDrawDiagnostics BadHexConstant.java
|
|
*/
|
|
|
|
public
|
|
class BadHexConstant {
|
|
long i = 0xL;
|
|
}
|