[mcs] Branch visited labels cache for conditional block. Fixes #44751
[mono.git] / mcs / errors / cs0031-7.cs
1 // CS0031: Constant value `1000M' cannot be converted to a `byte'
2 // Line: 8
3
4 class C
5 {
6         public static void Main ()
7         {
8                 const byte c = unchecked ((byte) 1000M);
9         }
10 }
11