author | never |
Wed, 07 Jul 2010 12:40:01 -0700 | |
changeset 5915 | 406168b53eb0 |
parent 863 | 3113c955a388 |
child 6150 | d055fa8ced62 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
3 |
* @bug 4153038 4785453 |
|
4 |
* @summary strictfp may not be used with constructors |
|
5 |
* @author David Stoutamire (dps) |
|
6 |
* |
|
863
3113c955a388
6724327: eliminate use of shell tests for simple golden file tests
jjg
parents:
10
diff
changeset
|
7 |
* @compile/fail/ref=BadConstructorModifiers.out -XDrawDiagnostics -XDstdout BadConstructorModifiers.java |
10 | 8 |
*/ |
9 |
||
10 |
public class BadConstructorModifiers { |
|
11 |
||
12 |
strictfp BadConstructorModifiers (double abra) { } |
|
13 |
||
14 |
} |