[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0030-2.cs
blobd9b2b031bed9e4442db6d3d55cc9cbe039f1649c
1 // CS0030: Cannot convert type `bool' to `float'
2 // Line: 12
4 public class Blah {
6 public static int Main ()
8 const bool k = false;
9 float f = (float) k;