test/tools/javac/SynchronizedClass.java

Thu, 23 Oct 2008 18:29:11 +0100

author
mcimadamore
date
Thu, 23 Oct 2008 18:29:11 +0100
changeset 158
c6e3fc6dda61
parent 69
82c7aa6fe50a
child 611
4172cfff05f0
permissions
-rw-r--r--

6557954: Inner class type parameters doesn't get substituted when checking type well-formedness
Summary: Validator.visitTypeApply should substitute all formal typevars with actual parameters
Reviewed-by: jjg

duke@1 1 /* @test /nodynamiccopyright/
duke@1 2 @bug 4037020 4785453
duke@1 3 @summary Verify that ClassModifier "synchronized" is not allowed.
duke@1 4 @author dps
duke@1 5
jjg@69 6 @compile/fail/ref=SynchronizedClass.out -XDrawDiagnostics -XDstdout SynchronizedClass.java
duke@1 7 */
duke@1 8
duke@1 9 public synchronized class SynchronizedClass { } // ERROR

mercurial