Add glib to the list of packages with debugging symbols.
[mono.git] / mcs / errors / cs0221-7.cs
1 // CS0221: Constant value `-Infinity' cannot be converted to a `ushort' (use `unchecked' syntax to override)
2 // Line: 6
3
4 class X {
5         static void Main () {
6                 System.Console.WriteLine ((ushort)double.NegativeInfinity);
7         }
8 }