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>2008-05-12 13:51:15 +0400
committerMarek Safar <marek.safar@gmail.com>2008-05-12 13:51:15 +0400
commitfec391692f656f0f722d0c03e30c0dbb6ae2220d (patch)
treedcfb49b8be4474490fb0cd805137de8ed6978514 /mcs/tests/test-646.cs
parent2aea823ce853b29cdd704d6426dc96b56db07f09 (diff)
Fixed test.
svn path=/trunk/mcs/; revision=102989
Diffstat (limited to 'mcs/tests/test-646.cs')
-rwxr-xr-xmcs/tests/test-646.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/test-646.cs b/mcs/tests/test-646.cs
index 11952994187..1e0aa055c0a 100755
--- a/mcs/tests/test-646.cs
+++ b/mcs/tests/test-646.cs
@@ -22,7 +22,7 @@ class Program
if (CastIntPtrToUInt32 (new IntPtr (int.MaxValue)) != int.MaxValue)
return 2;
} else {
- throw new ApplicationException (CastUIntPtrToInt64 (new UIntPtr (ulong.MaxValue)));
+ throw new ApplicationException (CastUIntPtrToInt64 (new UIntPtr (ulong.MaxValue)).ToString ());
// if (CastIntPtrToUInt32 (new IntPtr (long.MaxValue)) != long.MaxValue)
// return 4;
}