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:
authorMarek Safar <marek.safar@gmail.com>2005-11-04 18:19:18 +0300
committerMarek Safar <marek.safar@gmail.com>2005-11-04 18:19:18 +0300
commitb7ed43e1a598899f18701fdd2824ea90e4b90212 (patch)
treebda9ecdffd2c6c019d8eaa4fe5e1c3a58c2ab32f /mcs/tests/test-48.cs
parent8588adeb76e09eae44cfa4149bb9aca6c028fbc7 (diff)
new test case
svn path=/trunk/mcs/; revision=52578
Diffstat (limited to 'mcs/tests/test-48.cs')
-rw-r--r--mcs/tests/test-48.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/tests/test-48.cs b/mcs/tests/test-48.cs
index f6b96ca3653..2cd3fc917f0 100644
--- a/mcs/tests/test-48.cs
+++ b/mcs/tests/test-48.cs
@@ -30,4 +30,12 @@ public class Blah {
return 0;
}
+
+ public static void Test_1 ()
+ {
+ const long lk = 1024;
+ const long lM = 1024 * lk;
+ const long lG = 1024 * lM;
+ const long lT = 1024 * lG;
+ }
}