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-04-28 19:55:06 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-04-28 19:55:06 +0400
commit03238b4beb2d5f5bf7733fb35578ccf403d86817 (patch)
treee793d6c99303cd4fdd1b251da9b90222f7d7e635 /mcs/tests/test-108.cs
parent11431ce8425e1ab436f6791e35bb2ffd31385846 (diff)
2002-04-28 Miguel de Icaza <miguel@ximian.com>
* test-108.cs: Improve test svn path=/trunk/mcs/; revision=4120
Diffstat (limited to 'mcs/tests/test-108.cs')
-rwxr-xr-xmcs/tests/test-108.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/tests/test-108.cs b/mcs/tests/test-108.cs
index 9e179df420a..2edc56d9457 100755
--- a/mcs/tests/test-108.cs
+++ b/mcs/tests/test-108.cs
@@ -9,6 +9,14 @@ class X {
return 1;
}
+ if (true)
+ i = 2;
+ else
+ i = 3;
+
+ if (i != 2)
+ return 5;
+
while (true){
i++;
if (i == 10)