test/tools/javac/FloatingPointChanges/BadConstructorModifiers.java

Thu, 10 Jul 2008 11:25:23 -0700

author
jjg
date
Thu, 10 Jul 2008 11:25:23 -0700
changeset 69
82c7aa6fe50a
parent 1
9a66ca7c79fa
child 611
4172cfff05f0
permissions
-rw-r--r--

6724327: eliminate use of shell tests for simple golden file tests
Reviewed-by: darcy

     1 /*
     2  * @test  /nodynamiccopyright/
     3  * @bug 4153038 4785453
     4  * @summary strictfp may not be used with constructors
     5  * @author David Stoutamire (dps)
     6  *
     7  * @compile/fail/ref=BadConstructorModifiers.out -XDrawDiagnostics -XDstdout BadConstructorModifiers.java
     8  */
    10 public class BadConstructorModifiers {
    12     strictfp BadConstructorModifiers (double abra) { }
    14 }

mercurial