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-30 21:09:00 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-04-30 21:09:00 +0400
commit786c970f59ece89fb56b6282b16ae993561d8f34 (patch)
tree32b5e5bf81349773211064db2e407ded7ef4fba9 /mcs/tests/test-109.cs
parentfc3048b2453b89e572bfc103c19e64fd2347307d (diff)
2002-04-30 Miguel de Icaza <miguel@ximian.com>
* ecore.cs (SimpleName.SimpleNameResolve): Perform member lookups in container classes as well. * expression.cs (Binary.ResolveOperator): Handle string case before anything else (as operator overloading does emit an error before doing anything else). This code could go away when we move to a table driven model, but i could not come up with a good plan last night. svn path=/trunk/mcs/; revision=4169
Diffstat (limited to 'mcs/tests/test-109.cs')
-rwxr-xr-xmcs/tests/test-109.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/tests/test-109.cs b/mcs/tests/test-109.cs
new file mode 100755
index 00000000000..740155886cd
--- /dev/null
+++ b/mcs/tests/test-109.cs
@@ -0,0 +1,13 @@
+using System;
+
+class T {
+ static int Main ()
+ {
+ //
+ // Just a test to compile the following:
+ //
+ string a = "Time is: " + DateTime.Now;
+
+ return 0;
+ }
+}