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:
authorRaja R Harinath <harinath@hurrynot.org>2005-03-07 10:08:31 +0300
committerRaja R Harinath <harinath@hurrynot.org>2005-03-07 10:08:31 +0300
commit9070a4d8dc3cf058e9d732968a562aa1d5671dc5 (patch)
treeac6bc0f241f1ba6abc62623e4747c49e3d346a42 /mcs/errors/ChangeLog
parent9235d3310826483718e154b226e49306c2f02869 (diff)
Fix #73394.
* mcs/ecore.cs (FieldExpr.EmitInstance): Catch cases of CS0120 that slipped in because of variable names that are identical to a builtin type's BCL equivalent ('string String;', 'int Int32;'). (PropertyExpr.EmitInstance): Likewise. * errors/cs0120-6.cs, errors/cs0120-7.cs: New tests from #73394. svn path=/trunk/mcs/; revision=41506
Diffstat (limited to 'mcs/errors/ChangeLog')
-rw-r--r--mcs/errors/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/mcs/errors/ChangeLog b/mcs/errors/ChangeLog
index 0a715574954..f8d81a96999 100644
--- a/mcs/errors/ChangeLog
+++ b/mcs/errors/ChangeLog
@@ -1,3 +1,7 @@
+2005-03-07 Raja R Harinath <rharinath@novell.com>
+
+ * cs0120-6.cs, cs0120-7.cs: New tests from #73394.
+
2005-02-28 Raja R Harinath <rharinath@novell.com>
* cs0053-2.cs: New test from #73052.