[Mono-bugs] [Bug 65170][Nor] New - unhandled type in custom attr

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 1 Sep 2004 18:13:34 -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 marek.safar@seznam.cz.

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

--- shadow/65170	2004-09-01 18:13:34.000000000 -0400
+++ shadow/65170.tmp.16010	2004-09-01 18:13:34.000000000 -0400
@@ -0,0 +1,53 @@
+Bug#: 65170
+Product: Mono: Compilers
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: C#
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: marek.safar@seznam.cz               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: unhandled type in custom attr
+
+Description of Problem:
+
+Crash with unhandled type in custom attr
+
+Steps to reproduce the problem:
+1. 
+
+
+using System;
+
+[AttributeUsage (AttributeTargets.All)]
+public class A: Attribute {
+
+	public A (object o) {
+	}
+}
+  
+[A ((object)AttributeTargets.All)]
+public class Test {
+        static public void Main() {
+	}
+}
+
+Actual Results:
+
+Crash
+
+Expected Results:
+
+Compilation succeeded
+
+How often does this happen? 
+
+
+Additional Information: