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.
9 lines
272 B
Java
9 lines
272 B
Java
/* @test /nodynamiccopyright/
|
|
* @compile HasBrokenConstantValue.jcod
|
|
* @compile/fail/ref=BrokenConstantValue.out -XDrawDiagnostics BrokenConstantValue.java
|
|
*/
|
|
public class BrokenConstantValue {
|
|
void t() {
|
|
String s = HasBrokenConstantValue.VALUE;
|
|
}
|
|
}
|