Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs0221-15.cs
blob9dec2af58f2fcbe90a4fbc687c73ddd5f2adbd5c
1 // CS0221: Constant value `256' cannot be converted to a `byte' (use `unchecked' syntax to override)
2 // Line: 13
4 class Test
6 public static explicit operator Test (byte b)
8 return null;
11 static void Main ()
13 var a = (Test) 256UL;