* Mono.Cairo/Cairo.cs (cairo_set_target_drawable): Not available anymore, removed.
[mono.git] / mcs / errors / cs0594-2.cs
1 //\r
2 // cs0594: Floating-point constant is outside the range for type 'decimal|double|float'\r
3 \r
4 class X {\r
5         public static void Main() {\r
6                 double dbl = 1.0e99999;\r
7         }\r
8 }\r