* MessageFormat.toPattern has weird rounding behavior.
*/
public void Test4058973() {
MessageFormat fmt = new MessageFormat("{0,choice,0#no files|1#one file|1< {0,number,integer} files}");
String pat = fmt.toPattern();
if (!pat.equals("{0,choice,0.0#no files|1.0#one file|1.0< {0,number,integer} files}")) {
errln("MessageFormat.toPattern failed");
}
}
/* @bug 4031438