2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0031-7.cs
blob7c37832f09d910eb42278603311b39b8f2851d97
1 // CS0031: Constant value `1000M' cannot be converted to a `byte'
2 // Line: 8
4 class C
6 public static void Main ()
8 const byte c = unchecked ((byte) 1000M);