[Mono-bugs] [Bug 58687][Blo] New - NotOverridable Subs

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 19 May 2004 03:51:41 -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 jwezel@compumaster.de.

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

--- shadow/58687	2004-05-19 03:51:41.000000000 -0400
+++ shadow/58687.tmp.2347	2004-05-19 03:51:41.000000000 -0400
@@ -0,0 +1,38 @@
+Bug#: 58687
+Product: Mono: Compilers
+Version: unspecified
+OS: Red Hat 9.0
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Blocker
+Component: Basic
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: jwezel@compumaster.de               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: NotOverridable Subs 
+
+Description of Problem:
+NotOverridable Subs are not supported currently, see this example:
+
+public class myTestApp
+public shared sub Main()
+System.Console.WriteLine("hello world!")
+System.Console.ReadLine()
+end sub
+notoverridable sub ebbes ()
+system.console.writeline("")
+end sub
+end class
+
+That is the compilation error:
+Cannot be declared NotOverridable since this method is not maked as 
+Overrides (0,0) : error failed: 2 Error(s), 0 warnings 
+
+
+How often does this happen? 
+Everytime