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:
authorMarek Safar <marek.safar@gmail.com>2005-02-28 17:14:39 +0300
committerMarek Safar <marek.safar@gmail.com>2005-02-28 17:14:39 +0300
commit481358f23ae33b84c1adcefcc088c0f826432651 (patch)
tree9914f7b53943eaa33ffd3c2b9b2aaef0689a4966 /mcs/errors/cs0069.cs
parent634014febd63e972843d8e63ed0f8aea4017732e (diff)
parent3e17f2435fc480dd1f0e96901f9638f4ecf7e888 (diff)
more tests + updated fixed
svn path=/trunk/mcs/; revision=41283
Diffstat (limited to 'mcs/errors/cs0069.cs')
-rw-r--r--mcs/errors/cs0069.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/mcs/errors/cs0069.cs b/mcs/errors/cs0069.cs
index dfbe7fc3094..92114bf751d 100644
--- a/mcs/errors/cs0069.cs
+++ b/mcs/errors/cs0069.cs
@@ -3,14 +3,10 @@
using System;
-class ErrorCS0069 {
- public delegate void FooHandler ();
- public static void Main () {
- }
-}
+public delegate void FooHandler ();
interface IBar {
- event OnFoo {
+ event FooHandler OnFoo {
add { }
remove { }
}