test/tools/javac/FloatingPointChanges/BadConstructorModifiers.java

Wed, 09 Apr 2008 11:19:15 -0700

author
xdono
date
Wed, 09 Apr 2008 11:19:15 -0700
changeset 15
18f0b1b5ffd6
parent 1
9a66ca7c79fa
child 69
82c7aa6fe50a
permissions
-rw-r--r--

Added tag jdk7-b25 for changeset 58039502942e

     1 /*
     2  * @test  /nodynamiccopyright/
     3  * @bug 4153038 4785453
     4  * @summary strictfp may not be used with constructors
     5  * @author David Stoutamire (dps)
     6  *
     7  * @run shell BadConstructorModifiers.sh
     8  */
    10 public class BadConstructorModifiers {
    12     strictfp BadConstructorModifiers (double abra) { }
    14 }

mercurial