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:
authorJaime Anguiano Olarra <jaime@mono-cvs.ximian.com>2002-12-03 20:33:10 +0300
committerJaime Anguiano Olarra <jaime@mono-cvs.ximian.com>2002-12-03 20:33:10 +0300
commitef029ba358a98a18edd5ded5efdf802f11737b1a (patch)
tree29acca660f2156184ef8059afd3f0c65af0545e2 /mcs/errors/cs0075.cs
parentc4885b2537b98dcad136bff88d4d3c06ff358b2e (diff)
With these new tests (73-79) we have completed the tests from CS0001 to
CS0100 for the compiler. svn path=/trunk/mcs/; revision=9369
Diffstat (limited to 'mcs/errors/cs0075.cs')
-rw-r--r--mcs/errors/cs0075.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs0075.cs b/mcs/errors/cs0075.cs
new file mode 100644
index 00000000000..3a40c4e4d48
--- /dev/null
+++ b/mcs/errors/cs0075.cs
@@ -0,0 +1,12 @@
+// cs0075.cs: Casting a negative value needs to have the value in parentheses.
+// Line: 9
+
+using System;
+
+class ErrorCS0075 {
+ static double x;
+ public static void Main () {
+ x = (double) -1;
+ }
+}
+