[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0221-4.cs
blobebe563056a28f666fa29784c5c039d8d85844a3a
1 // CS0221: Constant value `-10.1' cannot be converted to a `byte' (use `unchecked' syntax to override)
2 // Line: 6
4 class T {
5 static void Main () {
6 byte d = (byte)-10.1d;