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:
authorMartin Baulig <martin@novell.com>2003-07-21 22:59:11 +0400
committerMartin Baulig <martin@novell.com>2003-07-21 22:59:11 +0400
commit115d545a9f1b332a2b611e678565f62d1a0aefa8 (patch)
treec97f20a4af6f00ebc14544a0ab89a394a034d95a /mcs/errors/cs0074.cs
parentaf103a9e04d9d3e77a487dde5baf1a555775f2c6 (diff)
2003-07-21 Martin Baulig <martin@ximian.com>
* syntax0068.cs, syntax0069.cs, syntax0071.cs, syntax0116.cs: These are syntax errors which we'd need to catch in cs-parser.jay; separate them from the other errors. * cs0572.cs: New test. svn path=/trunk/mcs/; revision=16497
Diffstat (limited to 'mcs/errors/cs0074.cs')
-rw-r--r--mcs/errors/cs0074.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/errors/cs0074.cs b/mcs/errors/cs0074.cs
index d644e1aaf1f..6001814b857 100644
--- a/mcs/errors/cs0074.cs
+++ b/mcs/errors/cs0074.cs
@@ -4,7 +4,7 @@
using System;
abstract class ErrorCS0074 {
- delegate void Handler ();
+ public delegate void Handler ();
public abstract event Handler OnFoo = null;
public static void Main () {
}