[Mono-bugs] [Bug 74912][Wis] New - [GMCS] Error CS8025 on partial classes

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 11 May 2005 15:04:57 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by grompf@sublimeintervention.com.

http://bugzilla.ximian.com/show_bug.cgi?id=74912

--- shadow/74912	2005-05-11 15:04:57.000000000 -0400
+++ shadow/74912.tmp.27072	2005-05-11 15:04:57.000000000 -0400
@@ -0,0 +1,32 @@
+Bug#: 74912
+Product: Mono: Compilers
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: C#
+AssignedTo: martin@ximian.com                            
+ReportedBy: grompf@sublimeintervention.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: [GMCS] Error CS8025 on partial classes
+
+using System;
+
+public class MyApi {
+        public MyApi () {
+        }
+}
+
+public partial class MyClass {
+        public MyApi Api {
+                get {
+                        return new MyApi ();
+                }
+        }
+}