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
285 B
Java
9 lines
285 B
Java
/* @test /nodynamiccopyright/
|
|
@bug 4037020 4785453
|
|
@summary Verify that ClassModifier "synchronized" is not allowed.
|
|
@author dps
|
|
|
|
@compile/fail/ref=SynchronizedClass.out -XDrawDiagnostics SynchronizedClass.java
|
|
*/
|
|
|
|
public synchronized class SynchronizedClass { } // ERROR
|