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-04-01 18:27:58 +0400
committerRaja R Harinath <harinath@hurrynot.org>2005-04-01 18:27:58 +0400
commit6ac185b7934598052c53c85fd27310e5585160d2 (patch)
tree47dc735a0307a5055b0e952ab2a3dca654cbb2b0 /mcs/errors/ChangeLog
parent23a4006fdb67a35ee05a8b35d6e0f6dfad112573 (diff)
In mcs:
2005-04-01 Raja R Harinath <rharinath@novell.com> Fix #74232 and cs0208-3.cs. * expression.cs (ComposedCast.DoResolveAsTypeStep): Add CS0208 check. * typemanager.cs (IsUnmanagedType): Don't allow 'object' as an unmanaged type. Don't use FieldBuilders when 't' is a TypeBuilder. Use ModFlags and MemberType fields. * class.cs (MemberBase.member_type): Rename from MemberType. (MemberBase.MemberType): New property. Determines member_type on demand. (MemberBase.DoDefine): Don't initialize MemberType here. (FieldMember.Define): Likewise. In errors: * TestRunner.cs (TestRunner): Make "KNOWN ISSUE" messages slightly more verbose. * cs0208-4.cs: New test from #74232. svn path=/trunk/mcs/; revision=42462
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 fb2cc34bc88..d5e2f758a9c 100644
--- a/mcs/errors/ChangeLog
+++ b/mcs/errors/ChangeLog
@@ -1,5 +1,9 @@
2005-04-01 Raja R Harinath <rharinath@novell.com>
+ * TestRunner.cs (TestRunner): Make "KNOWN ISSUE" messages slightly
+ more verbose.
+ * cs0208-4.cs: New test from #74232.
+
* cs0267.cs: New. Mentioned in passing in #74309.
2005-03-29 Raja R Harinath <rharinath@novell.com>