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>2003-02-15 00:35:27 +0300
committerMiguel de Icaza <miguel@gnome.org>2003-02-15 00:35:27 +0300
commit27f43d377a33204e886a62b9e69c2a58c7ecc1b6 (patch)
treec4e1b448d1b20732e4a12a1e05b382346deb0ad4 /mcs/tests/test-68.cs
parent10f6a0130bfafc4d8efb3963ca2d1074319aeda5 (diff)
More tests
svn path=/trunk/mcs/; revision=11590
Diffstat (limited to 'mcs/tests/test-68.cs')
-rwxr-xr-xmcs/tests/test-68.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/mcs/tests/test-68.cs b/mcs/tests/test-68.cs
index ffe5031c079..8514c941359 100755
--- a/mcs/tests/test-68.cs
+++ b/mcs/tests/test-68.cs
@@ -26,8 +26,11 @@ class X {
return 2;
Y y = new Y ();
- if (y.value.ToString () != "3")
+ if (y.value.ToString () != "3"){
+ string x = y.value.ToString ();
+ Console.WriteLine ("Got: {0} expected 3", x);
return 3;
+ }
Console.WriteLine ("Test ok");
return 0;
}