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:
authorMiguel de Icaza <miguel@gnome.org>2002-07-03 05:30:48 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-07-03 05:30:48 +0400
commitce71f4631c7b573137d011c733af7163a019aa48 (patch)
tree2bb0ae32c7b29be381a2b170742190e05c1d7f16 /mcs/errors/cs0594.cs
parent4e59f39f00aa3f4f2374abf1ad4df883ea76821e (diff)
Add new tests from Andrew
svn path=/trunk/mcs/; revision=5563
Diffstat (limited to 'mcs/errors/cs0594.cs')
-rwxr-xr-xmcs/errors/cs0594.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/errors/cs0594.cs b/mcs/errors/cs0594.cs
new file mode 100755
index 00000000000..334dd35333a
--- /dev/null
+++ b/mcs/errors/cs0594.cs
@@ -0,0 +1,8 @@
+//
+// cs0594: Floating-point constant is outside the range for type 'decimal|double|float'
+
+class X {
+ public static void Main() {
+ decimal d = 12311111111111111111111111111111111111111111111111m;
+ }
+}