Initial load

This commit is contained in:
J. Duke 2007-12-01 00:00:00 +00:00
parent 686d76f772
commit f57b87e8f6
2973 changed files with 295817 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/*
* @test /nodynamiccopyright/
* @bug 4153038 4785453
* @summary strictfp may not be used with constructors
* @author David Stoutamire (dps)
*
* @run shell BadConstructorModifiers.sh
*/
public class BadConstructorModifiers {
strictfp BadConstructorModifiers (double abra) { }
}