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-10-15 07:34:54 +0400
committerMiguel de Icaza <miguel@gnome.org>2003-10-15 07:34:54 +0400
commit95a649e13d9de7ccad32ed8a3910db35a1ce32ce (patch)
treecaa5c04d2a3cfd01bff51985cfa8a40e2c516915 /mcs/tests/test-48.cs
parent6e4432e6c6b53bd748e8c617d131a29775094851 (diff)
Improve with bug 49487 info
svn path=/trunk/mcs/; revision=19061
Diffstat (limited to 'mcs/tests/test-48.cs')
-rw-r--r--mcs/tests/test-48.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/mcs/tests/test-48.cs b/mcs/tests/test-48.cs
index 21b6857ba6c..f6b96ca3653 100644
--- a/mcs/tests/test-48.cs
+++ b/mcs/tests/test-48.cs
@@ -6,6 +6,7 @@ public class Blah {
public static int Main ()
{
+ const int aaa = 1, bbb = 2;
const int foo = 10;
int j = Blah.i;
@@ -22,6 +23,8 @@ public class Blah {
Console.WriteLine (bar);
Console.WriteLine (foo);
}
+ if ((aaa + bbb) != 3)
+ return 2;
Console.WriteLine ("Constant emission test okay");