Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2001-10-05 12:35:28 +0400
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2001-10-05 12:35:28 +0400
commite3a22b92fbc389eddde93c30665c3c376eea88ab (patch)
tree7e966c748f5cb34ce81d30296e77b803359e5629 /mcs/errors/cs0030.cs
parentf9f86d8b2b3fcad8b89ccf00f6824cdd43713c14 (diff)
Add a file for error CS0030
svn path=/trunk/mcs/; revision=1089
Diffstat (limited to 'mcs/errors/cs0030.cs')
-rw-r--r--mcs/errors/cs0030.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/errors/cs0030.cs b/mcs/errors/cs0030.cs
new file mode 100644
index 00000000000..7226eb2855c
--- /dev/null
+++ b/mcs/errors/cs0030.cs
@@ -0,0 +1,15 @@
+// cs0030.cs : Cannot convert type 'Blah' to 'float'
+// Line : 12
+
+public class Blah {
+
+ public static int Main ()
+ {
+ Blah k;
+
+ k = new Blah ();
+
+ float f = (float) k;
+
+ }
+}