(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0030.cs
blob7226eb2855c57233fd244d0b45035c1c3d5e4f2c
1 // cs0030.cs : Cannot convert type 'Blah' to 'float'
2 // Line : 12
4 public class Blah {
6 public static int Main ()
8 Blah k;
10 k = new Blah ();
12 float f = (float) k;