[Mono-bugs] [Bug 30174][Nor] New - mcs dies with a nullref with a typo in a type
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
11 Sep 2002 11:31:48 -0000
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 lupus@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=30174
--- shadow/30174 Wed Sep 11 07:31:48 2002
+++ shadow/30174.tmp.11047 Wed Sep 11 07:31:48 2002
@@ -0,0 +1,26 @@
+Bug#: 30174
+Product: Mono/MCS
+Version: unspecified
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: lupus@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: mcs dies with a nullref with a typo in a type
+
+The following program makes mcs crash (note the strng instead of string).
+class T {
+ static void stuff (strng a, params object[] args) {
+ }
+ static void Main () {
+ stuff ("hello", 1);
+ }
+}