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>2001-09-29 00:27:52 +0400
committerMiguel de Icaza <miguel@gnome.org>2001-09-29 00:27:52 +0400
commit59ecdcf73b28e21013f673029a0f6538bfca8856 (patch)
tree459315409ce604a4dcb8f4eb2050f9f4c2ecd50a /mcs/tests/test-2.cs
parent639f81cc5f35c28d824fa9f9c5713c54b4d33c0e (diff)
2001-09-28 Miguel de Icaza <miguel@ximian.com>
* expression.cs (UserImplicitCast): Method should always be non-null. (Invocation::BetterConversion): Simplified test for IntLiteral. (Expression::ImplicitNumericConversion): Split this routine out. Put the code that performs implicit constant integer conversions here. (Expression::Resolve): Become a wrapper around DoResolve so we can check eclass and type being set after resolve. (Invocation::Badness): Remove this dead function (Binary::ResolveOperator): Do not compute the expensive argumnets unless we have a union for it. svn path=/trunk/mcs/; revision=1031
Diffstat (limited to 'mcs/tests/test-2.cs')
-rwxr-xr-xmcs/tests/test-2.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/test-2.cs b/mcs/tests/test-2.cs
index 552944439a2..0a18d50767b 100755
--- a/mcs/tests/test-2.cs
+++ b/mcs/tests/test-2.cs
@@ -2,6 +2,6 @@ class X {
static int Main (string [] args)
{
System.Console.WriteLine ("Hello, World");
- return 1;
+ return 0;
}
}