Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-358.cs
1 using System;
2
3 public class Test
4 {
5         public static void Main ()
6         {
7         double d = 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000222;
8         Console.Out.WriteLine (d.ToString ("R"));
9         Console.Out.WriteLine (d.ToString ());
10         }
11 }
12
13