author | never |
Wed, 07 Jul 2010 12:40:01 -0700 | |
changeset 5915 | 406168b53eb0 |
parent 863 | 3113c955a388 |
child 6150 | d055fa8ced62 |
permissions | -rw-r--r-- |
/* * @test /nodynamiccopyright/ * @bug 4153038 4785453 * @summary strictfp may not be used with constructors * @author David Stoutamire (dps) * * @compile/fail/ref=BadConstructorModifiers.out -XDrawDiagnostics -XDstdout BadConstructorModifiers.java */ public class BadConstructorModifiers { strictfp BadConstructorModifiers (double abra) { } }